1
0
Fork 0
yinghong-massage.de/Containerfile

10 lines
230 B
Text
Raw Normal View History

2023-05-30 12:17:34 +00:00
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/