summaryrefslogtreecommitdiffstats
path: root/Dockerfile
blob: c7daa688333de9df63deb1f6f34baeb2370f59b6 (plain)
1
2
3
4
5
6
7
8
9
10
FROM ghcr.io/getzola/zola:v0.17.2 as builder

COPY . /site
WORKDIR /site

RUN zola build

FROM nginx:stable-alpine-slim
COPY --from=builder /site/public/ /usr/share/nginx/html/
EXPOSE 80