From eade6e2542bd64ed999cc62bb8dddd0a65837c07 Mon Sep 17 00:00:00 2001 From: Viktor Barzin Date: Thu, 7 May 2026 23:16:17 +0000 Subject: [PATCH] fix: use hugomods/hugo image (klakegg/hugo no longer published) Co-Authored-By: Claude Opus 4.7 --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 66946ff..8491616 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,7 +2,7 @@ ARG HUGO_VERSION=0.139.0 ARG NGINX_VERSION=1.27-alpine -FROM klakegg/hugo:${HUGO_VERSION}-ext-alpine AS build +FROM hugomods/hugo:${HUGO_VERSION} AS build WORKDIR /src COPY . . RUN hugo --minify --gc --destination /out