add submodule

This commit is contained in:
2025-08-09 14:32:52 +02:00
parent 9d9164311a
commit 0c30013352

View File

@@ -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