templategen/Dockerfile
skeris 25185385d2
Some checks failed
Deploy / CreateImage (push) Failing after 4m0s
Deploy / DeployService (push) Failing after 23s
gitea ci
2025-02-10 02:19:16 +03:00

15 lines
436 B
Docker

FROM gitea.pena/penadevops/container-images/node:main as build
RUN apk update && rm -rf /var/cache/apk/*
WORKDIR /usr/app
COPY . .
RUN yarn install --ignore-scripts --non-interactive --frozen-lockfile && yarn cache clean
RUN yarn 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