frontPanel/Containerfile

14 lines
367 B
Plaintext
Raw Normal View History

2025-03-30 16:45:28 +00:00
FROM gitea.pena/penadevops/container-images/node:v20.14.0 as build
2023-07-01 15:45:44 +00:00
WORKDIR /usr/app
COPY . .
2025-03-07 22:30:36 +00:00
RUN npm install --force && yarn cache clean
2025-03-30 16:45:28 +00:00
RUN psstat.sh "npm run build"
2023-07-01 15:45:44 +00:00
2025-03-07 22:30:36 +00:00
FROM gitea.pena/penadevops/container-images/nginx:main as result
2023-07-01 15:45:44 +00:00
WORKDIR /usr/share/nginx/html
COPY --from=build /usr/app/build/ /usr/share/nginx/html
COPY hub.conf /etc/nginx/conf.d/default.conf