fix: update Hugo build command to use logLevel flag instead of deprecated debug flag

This commit is contained in:
Greg 2025-06-01 22:24:52 +02:00
parent 5c33bd3897
commit 304dc47f26

View File

@ -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