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 . .
# Initialize submodules if not done
RUN git submodule update --init
# Initialize and update submodules
RUN git submodule init && \
git submodule update --init --recursive
# Build the site
RUN hugo --minify