Added submodule init to dockerfile

This commit is contained in:
Jeremy Karst 2025-04-04 20:55:12 -04:00
parent 9c9553b7b9
commit 0f78547a47

View file

@ -10,6 +10,9 @@ WORKDIR /app
# Copy the repository contents # Copy the repository contents
COPY . . COPY . .
# Initialize submodules if not done
RUN git submodule update --init
# Build the site # Build the site
RUN hugo --minify RUN hugo --minify