managerr/frontend/Dockerfile
2025-07-21 16:38:07 +02:00

18 lines
269 B
Docker

FROM node:16-alpine
WORKDIR /app
# Copy package.json and package-lock.json
COPY package*.json ./
# Install dependencies
RUN npm install
# Copy the rest of the application
COPY . .
# Expose port 8012
EXPOSE 8012
# Start the application
CMD ["npm", "run", "serve"]