From 0f78547a47b36a3da62af007c43bba5cae4efb34 Mon Sep 17 00:00:00 2001 From: Jeremy Karst Date: Fri, 4 Apr 2025 20:55:12 -0400 Subject: [PATCH] Added submodule init to dockerfile --- Dockerfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Dockerfile b/Dockerfile index 17e6110..bb679a8 100644 --- a/Dockerfile +++ b/Dockerfile @@ -10,6 +10,9 @@ WORKDIR /app # Copy the repository contents COPY . . +# Initialize submodules if not done +RUN git submodule update --init + # Build the site RUN hugo --minify