diff --git a/Containerfile b/Containerfile new file mode 100644 index 0000000..b78764e --- /dev/null +++ b/Containerfile @@ -0,0 +1,15 @@ +FROM ghcr.io/getzola/zola:v0.17.2 as builder + +COPY content content +COPY static static +COPY themes themes +COPY templates templates +COPY config.toml config.toml +RUN [ "/bin/zola", "build" ] + + + +FROM docker.io/svenstaro/miniserve:alpine +COPY --from=builder /public /data + +CMD [ "--index", "index.html", "/data" ] \ No newline at end of file