logmower-frontend/Dockerfile
Erki Aas 8c7b0780e7
Some checks reported errors
continuous-integration/drone Build encountered an error
Initial commit
2022-10-31 23:12:25 +02:00

22 lines
364 B
Docker

FROM node AS dev
WORKDIR /app
EXPOSE 8080
COPY package* ./
RUN npm install
COPY . .
ENTRYPOINT ["npm", "run", "dev"]
# builder
FROM dev AS builder
RUN npm run build
# serve
FROM nginx AS prod
WORKDIR /usr/share/nginx/html
RUN rm -rf ./*
COPY ./nginx.conf /etc/nginx/conf.d/default.conf
COPY --from=builder /app/dist .
ENTRYPOINT ["nginx", "-g", "daemon off;"]