frontPanel/Dockerfile
Nastya a0ba62d916
Some checks failed
Deploy / DeployService (push) Failing after 24s
Deploy / CreateImage (push) Failing after 39s
update kit
2025-02-01 01:43:50 +03:00

15 lines
418 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 yarn install --ignore-scripts --non-interactive && yarn cache clean
RUN yarn 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 hub.conf /etc/nginx/conf.d/default.conf