first commit

This commit is contained in:
julien
2025-10-28 23:59:34 +01:00
commit ff05ed02e5
63 changed files with 1883 additions and 0 deletions

9
Dockerfile Normal file
View File

@@ -0,0 +1,9 @@
FROM ghcr.io/getzola/zola:v0.21.0 AS zola
COPY ./src /project
WORKDIR /project
RUN ["zola", "build"]
FROM ghcr.io/static-web-server/static-web-server:2
WORKDIR /
COPY --from=zola /project/public /public