frontAnswerer/Dockerfile

16 lines
513 B
Docker
Raw Normal View History

2025-03-09 13:27:31 +00:00
FROM gitea.pena/penadevops/container-images/node:main as build
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
2025-03-09 13:27:31 +00:00
FROM gitea.pena/penadevops/container-images/nginx:main 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
COPY --from=build /usr/app/widget/widget.js /usr/share/nginx/html/export/pub.js
2025-02-24 15:05:18 +00:00
COPY ./widget_en.js /usr/share/nginx/html/export/pub_en.js
COPY hub.conf /etc/nginx/conf.d/default.conf