Files
astra-frontend/Dockerfile
2022-12-26 11:26:54 +03:00

16 lines
231 B
Docker

FROM node:16-alpine AS builder
WORKDIR /front
COPY . .
RUN npm ci
RUN npm run build
FROM nginx:1.21.6-alpine as runner
COPY ./deploy/nginx.conf /etc/nginx/nginx.conf
COPY --from=builder /front/dist /var/www/html
EXPOSE 8888