frontPanel/Containerfile
skeris 1ec8f34238
Some checks failed
Deploy / CreateImage (push) Failing after 1m14s
Deploy / DeployService (push) Has been skipped
measure ram utilisation on staging hub
2025-03-31 15:02:12 +03:00

14 lines
367 B
Docker

FROM gitea.pena/penadevops/container-images/node:v20.14.0 as build
WORKDIR /usr/app
COPY . .
RUN npm install --force && yarn cache clean
RUN psstat.sh "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 hub.conf /etc/nginx/conf.d/default.conf