managerr/frontend/Dockerfile
2025-07-25 17:43:09 +02:00

11 lines
176 B
Docker

FROM node:22-alpine
WORKDIR /app
USER root
# Expose port 8012
EXPOSE 8012
# Install dependencies and start the application
CMD ["sh", "-c", "npm install && npm run serve"]