alexohneander-zola/Dockerfile
Alex Wellnitz 852636d2e1
Some checks failed
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 51s
Build Docker Container / Build-Container-Image (push) Failing after 2s
feat: add Dockerfile and build pipeline
2025-03-17 14:20:00 +01:00

9 lines
200 B
Docker

FROM ghcr.io/getzola/zola:v0.20.0 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