Fix Dockerfile: use fully qualified image names for Podman
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
parent
757e551a42
commit
79b6accd7c
1 changed files with 2 additions and 2 deletions
|
|
@ -1,9 +1,9 @@
|
||||||
FROM hugomods/hugo:exts as builder
|
FROM docker.io/hugomods/hugo:exts AS builder
|
||||||
|
|
||||||
WORKDIR /site
|
WORKDIR /site
|
||||||
COPY . .
|
COPY . .
|
||||||
RUN git submodule update --init --recursive && hugo --minify
|
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
|
COPY --from=builder /site/public /usr/share/nginx/html
|
||||||
EXPOSE 80
|
EXPOSE 80
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue