kubecon25/Dockerfile
Nicolai Ort 3810d3214b
All checks were successful
Build latest image / build-container (push) Successful in 2m19s
fix(docker): Update base image references to use the internal registry [SKIP CI]
2025-03-28 19:13:07 +01:00

8 lines
184 B
Docker

FROM registry.odit.services/hub/hugomods/hugo:exts AS build
WORKDIR /app
COPY . /app/
RUN hugo
FROM registry.odit.services/hub/hugomods/hugo:nginx
COPY --from=build /app/public /site