fe-drone-ci/Dockerfile

21 lines
228 B
Docker
Raw Permalink Normal View History

2021-06-06 02:37:12 +00:00
FROM node:lts as dist
2021-06-05 14:26:15 +00:00
WORKDIR /src
COPY . .
2021-06-06 02:37:12 +00:00
RUN yarn && \
2021-06-05 14:26:15 +00:00
yarn build:prod
2021-06-06 02:37:12 +00:00
FROM nginx:1.19.2
WORKDIR /app
COPY --from=dist /src/dist .
COPY nginx.conf /etc/nginx/nginx.conf
EXPOSE 80
2021-06-05 14:26:15 +00:00
2021-06-06 02:37:12 +00:00
CMD ["nginx","-g","daemon off;"]