chore: add build actions
Some checks are pending
Publish image / create-docker-images (push) Blocked by required conditions

This commit is contained in:
Alexander Navarro 2024-12-05 18:50:31 -03:00
parent e9d50af0ae
commit f7cee1f43c
2 changed files with 37 additions and 0 deletions

9
Dockerfile Normal file
View file

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