Attempting to fix dockerfile

This commit is contained in:
Jeremy Karst 2025-04-04 20:59:59 -04:00
parent d229150068
commit 736338ba75

View file

@ -7,8 +7,9 @@ RUN apk add --no-cache hugo git
# Copy the repository contents # Copy the repository contents
COPY . . COPY . .
# Initialize submodules if not done # Initialize and update submodules
RUN git submodule update --init RUN git submodule init && \
git submodule update --init --recursive
# Build the site # Build the site
RUN hugo --minify RUN hugo --minify