front-hub/Containerfile
Nastya 291d059654
Some checks failed
Deploy / CreateImage (push) Failing after 1m0s
Deploy / DeployService (push) Has been skipped
новая система покупок
2025-07-20 13:39:47 +03:00

16 lines
429 B
Docker

FROM docker.io/library/node:lts-alpine 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