front-hub/Dockerfile

16 lines
444 B
Docker
Raw Normal View History

2025-03-02 22:06:18 +00:00
FROM gitea.pena/penadevops/container-images/node:main as build
2022-12-03 20:46:27 +00:00
RUN apk update && rm -rf /var/cache/apk/*
WORKDIR /usr/app
2023-06-19 15:50:12 +00:00
COPY . .
2025-03-02 22:06:18 +00:00
RUN npm install --force && yarn cache clean
RUN npm run build
2025-03-02 22:06:18 +00:00
FROM gitea.pena/penadevops/container-images/nginx:main as result
2023-05-07 12:54:40 +00:00
WORKDIR /usr/share/nginx/html
COPY --from=build /usr/app/build/ /usr/share/nginx/html
2024-05-07 21:58:13 +00:00
COPY fallback.js /usr/share/nginx/html/fallback.js
2023-05-07 12:54:40 +00:00
COPY hub.conf /etc/nginx/conf.d/default.conf