blog/Dockerfile
Shautvast 79b6accd7c Fix Dockerfile: use fully qualified image names for Podman
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-03-26 10:37:31 +01:00

9 lines
224 B
Docker

FROM docker.io/hugomods/hugo:exts AS builder
WORKDIR /site
COPY . .
RUN git submodule update --init --recursive && hugo --minify
FROM docker.io/nginx:alpine
COPY --from=builder /site/public /usr/share/nginx/html
EXPOSE 80