From e3942ec527ebd6e03bcf64946d3e663ccabd4936 Mon Sep 17 00:00:00 2001 From: Jeremy Karst Date: Fri, 4 Apr 2025 22:32:03 -0400 Subject: [PATCH] still debugging some stupid portainer thing --- Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index ce31d92..a67e686 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,13 +4,13 @@ FROM golang:1.24-alpine AS builder WORKDIR /app # Install Hugo and Git -RUN apk add --no-cache hugo git +RUN apk add --no-cache hugo # Copy the repository contents COPY . . -# Build the site -RUN hugo --minify +# Build the site with verbose output +RUN hugo --minify --verbose # Production stage FROM nginx:alpine