Fix Dockerfile: use fully qualified image names for Podman

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
Shautvast 2026-03-26 10:37:31 +01:00
parent 757e551a42
commit 79b6accd7c

View file

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