Files
zola/Containerfile
Dustin C. Hatch 4ebe453d7c
All checks were successful
ContainerImages/zola/pipeline/head This commit looks good
Rebase on upstream, update to v0.21.0
Although we don't really need anything but Zola in this image, we can't
use the upstream image directly in a Jenkins job because it doesn't
contain a shell or any other utility that can "pause" the container.
Therefore, we do need to install the `pause` command, but we don't need
anything else from the _rsync_ image.
2025-08-25 23:01:24 -05:00

6 lines
112 B
Docker

FROM ghcr.io/getzola/zola:v0.21.0
COPY --from=registry.k8s.io/pause:3.9 /pause /bin/pause
ENTRYPOINT ["zola"]