martin/demo/frontend/Dockerfile

11 lines
209 B
Docker
Raw Normal View History

2023-05-30 03:12:22 +03:00
FROM node:18-alpine as builder
WORKDIR /usr/src/app
2018-10-11 17:28:20 +03:00
COPY . .
2023-05-30 03:12:22 +03:00
RUN npm i
RUN npm run build
2018-10-11 17:28:20 +03:00
FROM nginx:alpine
COPY nginx.conf /etc/nginx/nginx.conf
2023-05-30 03:12:22 +03:00
COPY --from=builder "/usr/src/app/dist" /usr/share/nginx/html