crimsontome.com/Dockerfile

9 lines
205 B
Docker
Raw Normal View History

FROM ghcr.io/getzola/zola:v0.17.0 as zola
WORKDIR /site
COPY src/blog/ /site
CMD ["build"]
2022-06-05 15:43:31 +01:00
FROM nginx:stable-alpine
2022-06-05 15:43:31 +01:00
RUN rm -r /usr/share/nginx/html/
COPY --from=zola /site/_site/ /usr/share/nginx/html/