WUT_Computer_Science/Programming/ERSMS-project/frontend/Dockerfile
2026-02-06 22:14:41 +01:00

19 lines
247 B
Docker

FROM node:18-alpine AS build-stage
WORKDIR /app
COPY package.json .
RUN npm install
COPY . .
RUN npm run build
FROM nginx:stable-alpine
COPY --from=build-stage /app/dist /usr/share/nginx/html
EXPOSE 8000
CMD ["nginx", "-g", "daemon off;"]