frontPanel/Dockerfile
Nastya fc4544f800
All checks were successful
Deploy / DeployService (push) Has been skipped
update deploy
2025-08-07 01:50:34 +03:00

12 lines
385 B
Docker

FROM gitea.pena/penadevops/container-images/node:main as build
WORKDIR /usr/app
COPY . .
RUN yarn install --verbose --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