From e4b313041ed9658df669f71df5b46bf735627aad Mon Sep 17 00:00:00 2001 From: Username Date: Tue, 20 Jan 2026 08:12:22 +0100 Subject: [PATCH] containerfile: pin pip>=25.3 to fix CVE-2025-8869 --- Containerfile.slim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Containerfile.slim b/Containerfile.slim index 689e103..6275a15 100644 --- a/Containerfile.slim +++ b/Containerfile.slim @@ -16,7 +16,7 @@ RUN apk add --no-cache gcc musl-dev libffi-dev # Create virtual environment and upgrade pip RUN python -m venv /opt/venv ENV PATH="/opt/venv/bin:$PATH" -RUN pip install --no-cache-dir --upgrade pip wheel +RUN pip install --no-cache-dir --upgrade "pip>=25.3" wheel # Install Python dependencies COPY requirements.txt .