2023-10-26 06:16:02 +00:00
|
|
|
FROM node:21.1.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
|
|
|
|
2021-05-02 17:35:08 +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
|
|
|
|
|
|
|
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
|
|
|
|
2023-10-25 03:55:22 +00:00
|
|
|
FROM nginx:1.25.3-alpine
|
2020-12-03 16:42:16 +00:00
|
|
|
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
|
2020-12-03 16:42:16 +00:00
|
|
|
CMD ["nginx"]
|