1
0
Fork 0

Add Containerfile

This commit is contained in:
Mo 2023-05-30 14:17:34 +02:00
parent 93c027162d
commit 257583c26e

9
Containerfile Normal file
View file

@ -0,0 +1,9 @@
FROM ghcr.io/getzola/zola:v0.17.2 AS build
WORKDIR /site
COPY . .
RUN ["zola", "build"]
FROM docker.io/library/nginx:alpine
EXPOSE 80
COPY ./nginx.conf /etc/nginx/nginx.conf
COPY --from=build /site/public/ /usr/share/nginx/html/