diff --git a/containers/cv/Dockerfile b/containers/cv/Dockerfile index a36f8bc..14ac6ce 100644 --- a/containers/cv/Dockerfile +++ b/containers/cv/Dockerfile @@ -6,6 +6,8 @@ # # The container downloads the tarball on startup, extracts it, and serves with nginx. +ARG CV_VERSION=0.1.0 + FROM nginx:alpine # Install curl for downloading release assets diff --git a/containers/devpi/Dockerfile b/containers/devpi/Dockerfile index 6c9cdc8..feb4451 100644 --- a/containers/devpi/Dockerfile +++ b/containers/devpi/Dockerfile @@ -1,7 +1,12 @@ FROM python:3.12-slim +ARG DEVPI_SERVER_VERSION=6.19.1 +ARG DEVPI_WEB_VERSION=5.0.1 + # Install devpi-server and devpi-web -RUN pip install --no-cache-dir devpi-server devpi-web +RUN pip install --no-cache-dir \ + devpi-server==${DEVPI_SERVER_VERSION} \ + devpi-web==${DEVPI_WEB_VERSION} # Create non-root user RUN useradd -r -u 1000 devpi && mkdir -p /devpi && chown devpi:devpi /devpi diff --git a/containers/quartz/Dockerfile b/containers/quartz/Dockerfile index 63e5757..61db32e 100644 --- a/containers/quartz/Dockerfile +++ b/containers/quartz/Dockerfile @@ -6,6 +6,8 @@ # # The container downloads the tarball on startup, extracts it, and serves with nginx. +ARG QUARTZ_VERSION=0.1.0 + FROM nginx:alpine # Install curl for downloading release assets diff --git a/docs/how-to/zot/pin-container-versions.md b/docs/how-to/zot/pin-container-versions.md index 30bce73..3c6d61a 100644 --- a/docs/how-to/zot/pin-container-versions.md +++ b/docs/how-to/zot/pin-container-versions.md @@ -1,7 +1,6 @@ --- title: Pin Container Versions modified: 2026-02-20 -status: active tags: - how-to - containers diff --git a/service-versions.yaml b/service-versions.yaml index dee07c7..76025cd 100644 --- a/service-versions.yaml +++ b/service-versions.yaml @@ -169,20 +169,20 @@ services: - name: devpi type: hybrid last-reviewed: null - current-version: null + current-version: "6.19.1" upstream-source: https://github.com/devpi/devpi/releases - name: cv type: hybrid last-reviewed: null - current-version: null + current-version: "0.1.0" upstream-source: null notes: Personal static site, no upstream - name: docs type: hybrid last-reviewed: null - current-version: null + current-version: "0.1.0" upstream-source: https://github.com/jackyzha0/quartz/releases notes: Quartz static site generator