2025-03-07 22:30:36 +00:00
|
|
|
FROM gitea.pena/penadevops/container-images/node:main 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
|
|
|
|
RUN 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
|