This commit is contained in:
2026-01-26 03:17:14 +01:00
parent 467fd7f099
commit d29f55f6fd
110 changed files with 25682 additions and 0 deletions

8
Dockerfile Normal file
View File

@@ -0,0 +1,8 @@
FROM docker.io/hugomods/hugo:latest AS build
WORKDIR /src
COPY . .
RUN git submodule update --init --recursive --progress
RUN hugo
FROM nginx:alpine
COPY --from=build /src/public /usr/share/nginx/html