added dockerfile
Signed-off-by: Erik <erik@noreply.localhost>
This commit is contained in:
parent
303787e460
commit
ad64ce5c9d
1 changed files with 9 additions and 0 deletions
9
Dockerfile
Normal file
9
Dockerfile
Normal file
|
@ -0,0 +1,9 @@
|
|||
FROM ghcr.io/getzola/zola:v0.17.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
|
Loading…
Reference in a new issue