From 13ba0e844e19351c3dfd3ba603f5f4517185fe83 Mon Sep 17 00:00:00 2001 From: Greg Date: Sun, 25 May 2025 17:13:59 +0200 Subject: [PATCH] Refactor: Update Hugo logging flags in Dockerfile --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 2089de5..1700bce 100644 --- a/Dockerfile +++ b/Dockerfile @@ -15,7 +15,7 @@ COPY . . # - Output will be in /src/public by default. # - Added --verbose and --debug for more detailed build logs. # - Removed the '|| mkdir ...' fallback to ensure Hugo errors stop the build and are visible. -RUN hugo --gc --minify --verbose --debug +RUN hugo --gc --minify --logLevel info --logLevel debug # Stage 2: Serve the site with Nginx FROM nginx:1.25-alpine