zola-ci (sha256:10904d23f49f007ae1400b7ea9a7d58fc4ce5134f439d4f241315895b0409728)
Installation
docker pull git.sandboxatl.org/sbx/zola-ci@sha256:10904d23f49f007ae1400b7ea9a7d58fc4ce5134f439d4f241315895b0409728sha256:10904d23f49f007ae1400b7ea9a7d58fc4ce5134f439d4f241315895b0409728Image layers
| # debian.sh --arch 'amd64' out/ 'trixie' '@1771804800' |
| ARG ZOLA_VERSION=v0.19.2 |
| RUN |1 ZOLA_VERSION=v0.19.2 /bin/sh -c apt-get update && apt-get upgrade -y && apt-get install -y --no-install-recommends rsync nodejs gzip openssh-client git bash curl ca-certificates tar && if [ -z "$ZOLA_VERSION" ]; then ZOLA_VERSION=$(curl -sI https://github.com/getzola/zola/releases/latest | grep -i "location:" | awk -F/ '{print $NF}' | tr -d '\r'); echo "Detected latest version: ${ZOLA_VERSION}"; fi && echo "Downloading Zola ${ZOLA_VERSION}..." && curl -fSL "https://github.com/getzola/zola/releases/download/${ZOLA_VERSION}/zola-${ZOLA_VERSION}-x86_64-unknown-linux-gnu.tar.gz" | tar -xz -C /usr/local/bin && chmod +x /usr/local/bin/zola && apt-get clean && rm -rf /var/lib/apt/lists/* # buildkit |
| RUN |1 ZOLA_VERSION=v0.19.2 /bin/sh -c echo "Running build-time tests..." && node --version && git --version && zola --version && echo "Tests passed for Zola $(zola --version)" # buildkit |
| ENTRYPOINT ["/bin/bash" "-l" "-c"] |