frequi_origin/Dockerfile

24 lines
414 B
Docker
Raw Normal View History

FROM node:15.5.1-alpine as ui-builder
2020-06-04 09:57:37 +00:00
RUN mkdir /app
WORKDIR /app
# ENV PATH /usr/src/app/node_modules/.bin:$PATH
COPY package.json /app/package.json
2020-07-26 08:52:07 +00:00
COPY yarn.lock /app/yarn.lock
2020-06-04 09:57:37 +00:00
2020-07-16 05:12:41 +00:00
RUN yarn
2020-06-04 09:57:37 +00:00
2020-07-16 05:12:41 +00:00
RUN yarn global add @vue/cli
2020-06-04 09:57:37 +00:00
COPY . /app
2020-07-16 05:12:41 +00:00
RUN yarn build
2020-06-04 09:57:37 +00:00
FROM nginx:1.19.6-alpine
COPY --from=ui-builder /app/dist /etc/nginx/html
COPY --from=ui-builder /app/nginx.conf /etc/nginx/nginx.conf
2020-06-04 09:57:37 +00:00
EXPOSE 80
CMD ["nginx"]