From aba81f908ea7574f6c2963274ec3c528b88e461a Mon Sep 17 00:00:00 2001 From: Username Date: Tue, 20 Jan 2026 08:16:49 +0100 Subject: [PATCH] containerfile: force upgrade pip and jaraco.context post-install --- Containerfile.slim | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Containerfile.slim b/Containerfile.slim index 6275a15..314b762 100644 --- a/Containerfile.slim +++ b/Containerfile.slim @@ -20,7 +20,8 @@ RUN pip install --no-cache-dir --upgrade "pip>=25.3" wheel # Install Python dependencies COPY requirements.txt . -RUN pip install --no-cache-dir -r requirements.txt gunicorn +RUN pip install --no-cache-dir -r requirements.txt gunicorn && \ + pip install --no-cache-dir --upgrade "pip>=25.3" "jaraco.context>=6.1.0" # Stage 2: Alpine runtime (minimal)