From 0c30013352810b42ae44bd1b77c079900b6b2519 Mon Sep 17 00:00:00 2001 From: Remo Liebmann Date: Sat, 9 Aug 2025 14:32:52 +0200 Subject: [PATCH] add submodule --- Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 8a0b69c..fede03a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,8 @@ FROM docker.io/hugomods/hugo:latest AS build WORKDIR /src COPY . . -RUN hugo +RUN git submodule update --init --recursive --progress +RUN hugo FROM nginx:alpine COPY --from=build /src/public /usr/share/nginx/html \ No newline at end of file