frequi_origin/Dockerfile

29 lines
630 B
Docker
Raw Normal View History

FROM node:17.2.0-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
RUN apk add --update --no-cache python3 g++ make\
&& yarn \
&& apk del python3 g++ make
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
2021-10-27 18:08:27 +00:00
# The below flag should be removed, it's an incompatibility between
# webpack and node17
RUN NODE_OPTIONS=--openssl-legacy-provider yarn build
2020-06-04 09:57:37 +00:00
FROM nginx:1.21.4-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"]