2025-01-24 10:04:25 +00:00
|
|
|
FROM gitea.pena/penadevops/container-images/node:main as build
|
2023-07-01 15:45:44 +00:00
|
|
|
|
|
|
|
RUN apk update && rm -rf /var/cache/apk/*
|
|
|
|
WORKDIR /usr/app
|
|
|
|
COPY . .
|
|
|
|
|
2024-12-22 12:36:46 +00:00
|
|
|
RUN yarn install --ignore-scripts --non-interactive && yarn cache clean
|
2023-07-01 15:45:44 +00:00
|
|
|
RUN yarn build
|
|
|
|
|
|
|
|
|
2025-01-24 10:04:25 +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
|