chore: add build actions
Some checks failed
Publish image / create-docker-images (push) Failing after 1m1s
Some checks failed
Publish image / create-docker-images (push) Failing after 1m1s
This commit is contained in:
parent
e9d50af0ae
commit
7fd264d01f
2 changed files with 36 additions and 0 deletions
9
Dockerfile
Normal file
9
Dockerfile
Normal 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
|
||||
Loading…
Add table
Add a link
Reference in a new issue