1
0
Fork 0
yinghong-massage.de/Containerfile
2023-05-30 14:17:34 +02:00

9 lines
230 B
Docker

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/