frequi_origin/Dockerfile

23 lines
452 B
Docker
Raw Normal View History

FROM node:21.5.0-alpine as ui-builder
2020-06-04 09:57:37 +00:00
RUN mkdir /app
WORKDIR /app
COPY package.json yarn.lock .yarnrc.yml /app/
COPY .yarn/releases/ /app/.yarn/releases/
2020-06-04 09:57:37 +00:00
RUN apk add --update --no-cache python3 g++ make\
&& yarn install\
&& apk del python3 g++ make
2020-06-04 09:57:37 +00:00
COPY . /app
2021-10-27 18:08:27 +00:00
RUN yarn build
2020-06-04 09:57:37 +00:00
FROM nginx:1.25.3-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"]