kubecon25/Dockerfile
Nicolai Ort 1b33b9cb03
Some checks failed
Build latest image / build-container (push) Has been cancelled
fix(ci): Removed git copy
2025-03-28 19:11:25 +01:00

8 lines
130 B
Docker

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