Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion devpi/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Artea devpi image: PyPI pull-through cache + Artea policy filtering.
# Internal-only service; the gateway enforces auth (see docs/ARCHITECTURE.md).
# Base = python:3.14-slim, digest-pinned (ADR-0004; bump procedure in policy-sync/Dockerfile).
FROM python:3.14-slim@sha256:b877e50bd90de10af8d82c57a022fc2e0dc731c5320d762a27986facfc3355c1
FROM python:3.14-slim@sha256:d3400aa122fa42cf0af0dbe8ec3091b047eac5c8f7e3539f7135e86d855dc015

# Exact pins; the single source of truth for the devpi-server version.
ARG DEVPI_SERVER_VERSION=6.20.2
Expand Down
2 changes: 1 addition & 1 deletion policy-sync/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# devpi/README.md), so no pip dependencies at all.
# Base = python:3.14-slim, digest-pinned (ADR-0004); bump procedure in
# docs/guides/operations.md ("Base-image digest pins").
FROM python:3.14-slim@sha256:b877e50bd90de10af8d82c57a022fc2e0dc731c5320d762a27986facfc3355c1
FROM python:3.14-slim@sha256:d3400aa122fa42cf0af0dbe8ec3091b047eac5c8f7e3539f7135e86d855dc015

WORKDIR /app
COPY policy_sync ./policy_sync
Expand Down
2 changes: 1 addition & 1 deletion scripts/Dockerfile.bootstrap
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
# No jq (the script parses JSON with python3) and no docker.
#
# Base = python:3.14-slim, digest-pinned (ADR-0004; bump procedure in policy-sync/Dockerfile).
FROM python:3.14-slim@sha256:b877e50bd90de10af8d82c57a022fc2e0dc731c5320d762a27986facfc3355c1
FROM python:3.14-slim@sha256:d3400aa122fa42cf0af0dbe8ec3091b047eac5c8f7e3539f7135e86d855dc015

RUN apt-get update \
&& apt-get install -y --no-install-recommends curl ca-certificates \
Expand Down