2023-12-17 13:22:21 +00:00
|
|
|
FROM node:20.10-alpine3.18 as build
|
|
|
|
|
|
|
|
RUN apk update && rm -rf /var/cache/apk/*
|
|
|
|
WORKDIR /usr/app
|
|
|
|
COPY . .
|
|
|
|
|
|
|
|
RUN yarn install --ignore-scripts --non-interactive --frozen-lockfile && yarn cache clean
|
|
|
|
RUN yarn build
|
2024-02-22 21:04:11 +00:00
|
|
|
RUN yarn build:widget
|
2023-12-17 13:22:21 +00:00
|
|
|
|
|
|
|
|
|
|
|
FROM nginx:latest as result
|
|
|
|
WORKDIR /usr/share/nginx/html
|
2024-01-24 16:25:23 +00:00
|
|
|
COPY --from=build /usr/app/dist/ /usr/share/nginx/html
|
2024-02-22 21:04:11 +00:00
|
|
|
COPY --from=build /usr/app/widget/widget.js /usr/share/nginx/html/export/pub.js
|
2023-12-17 13:22:21 +00:00
|
|
|
COPY hub.conf /etc/nginx/conf.d/default.conf
|