Fix Debian version in apt sources (trixie, not bookworm)

This commit is contained in:
Mondo Diaz
2026-01-14 18:01:57 +00:00
parent 5f43179fb2
commit 7ac0fcdebf

View File

@@ -23,10 +23,9 @@ FROM containers.global.bsf.tools/python:3.12-slim
ARG PIP_INDEX_URL=https://deps.global.bsf.tools/artifactory/api/pypi/pypi.org/simple
# Configure apt to use internal Debian mirrors
RUN printf 'deb https://deps.global.bsf.tools/artifactory/deb.debian.org-debian bookworm main\n\
deb https://deps.global.bsf.tools/artifactory/deb.debian.org-debian bookworm-updates main\n\
deb https://deps.global.bsf.tools/artifactory/security.debian.org-debian-security bookworm-security main\n' > /etc/apt/sources.list
# Configure apt to use internal Debian mirrors (trixie = Debian testing)
RUN printf 'deb https://deps.global.bsf.tools/artifactory/deb.debian.org-debian trixie main\n\
deb https://deps.global.bsf.tools/artifactory/security.debian.org-debian-security trixie-security main\n' > /etc/apt/sources.list
# Disable proxy cache
RUN printf 'Acquire::http::Pipeline-Depth 0;\nAcquire::http::No-Cache true;\nAcquire::BrokenProxy true;\n' > /etc/apt/apt.conf.d/99fixbadproxy