first commit

This commit is contained in:
julien
2025-01-14 17:57:40 +01:00
commit b5136b819a
30 changed files with 1069 additions and 0 deletions

9
Dockerfile Normal file
View File

@ -0,0 +1,9 @@
FROM ghcr.io/getzola/zola:v0.19.2 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