Get started on my own blog

This commit is contained in:
Lol3rrr
2026-02-17 00:09:09 +01:00
commit 12bf8b7ef8
12 changed files with 186 additions and 0 deletions

9
Dockerfile Normal file
View File

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