still debugging some stupid portainer thing

This commit is contained in:
Jeremy Karst 2025-04-04 22:32:03 -04:00
parent 94d181cd3d
commit e3942ec527

View file

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