WUT_Computer_Science/frontend/Dockerfile
2024-05-12 15:30:17 +02:00

19 lines
245 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 80
CMD ["nginx", "-g", "daemon off;"]