2025-03-09 13:27:31 +00:00
|
|
|
FROM gitea.pena/penadevops/container-images/node:main as build
|
2023-12-17 13:22:21 +00:00
|
|
|
|
|
|
|
WORKDIR /usr/app
|
|
|
|
COPY . .
|
|
|
|
|
2025-03-09 13:27:31 +00:00
|
|
|
RUN npm install --force && yarn cache clean
|
|
|
|
RUN npm run build
|
|
|
|
RUN npm run build:widget
|
2023-12-17 13:22:21 +00:00
|
|
|
|
2025-03-09 13:27:31 +00:00
|
|
|
FROM gitea.pena/penadevops/container-images/nginx:main as result
|
2023-12-17 13:22:21 +00:00
|
|
|
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
|