kubecon25/Dockerfile
Nicolai Ort f302fd140f
Some checks failed
Build latest image / build-container (push) Failing after 11s
Setup all of the fun things
2025-03-28 19:05:27 +01:00

9 lines
150 B
Docker

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