docs/Dockerfile
Philipp Dormann 75d0af185c
All checks were successful
Build latest image / build-container (push) Successful in 2m31s
Build release images / build-container (push) Successful in 2m42s
ci: drop displayUpdatedDate for now
2025-03-28 17:09:01 +01:00

9 lines
152 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