From 304dc47f268d167771840f84cf3d0be5780e3edb Mon Sep 17 00:00:00 2001 From: Greg Date: Sun, 1 Jun 2025 22:24:52 +0200 Subject: [PATCH] fix: update Hugo build command to use logLevel flag instead of deprecated debug flag --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 2dc47d9..1494493 100644 --- a/Dockerfile +++ b/Dockerfile @@ -39,7 +39,7 @@ COPY . . # Build the Hugo site. # - Output will be in /src/public by default. # - Using --verbose and --debug for more detailed build logs. -RUN hugo --gc --minify --debug +RUN hugo --gc --minify --logLevel debug # Stage 2: Serve the site with Nginx FROM nginx:1.25-alpine