front-hub/Dockerfile
skeris 1799263212
Some checks failed
Deploy / CreateImage (push) Failing after 2m33s
Deploy / DeployService (push) Has been skipped
deploy prod
2025-03-03 01:06:18 +03:00

16 lines
444 B
Docker

FROM gitea.pena/penadevops/container-images/node:main as build
RUN apk update && rm -rf /var/cache/apk/*
WORKDIR /usr/app
COPY . .
RUN npm install --force && yarn cache clean
RUN npm run build
FROM gitea.pena/penadevops/container-images/nginx:main as result
WORKDIR /usr/share/nginx/html
COPY --from=build /usr/app/build/ /usr/share/nginx/html
COPY fallback.js /usr/share/nginx/html/fallback.js
COPY hub.conf /etc/nginx/conf.d/default.conf