This commit is contained in:
2026-08-22 14:49:33 +02:00
commit 95f15fe531
63 changed files with 2977 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
FROM ghcr.io/getzola/zola:v0.17.1 as zola
COPY . /website
WORKDIR /website
RUN ["zola", "build"]
FROM ghcr.io/static-web-server/static-web-server:2
WORKDIR /
COPY --from=zola /website/public /public