containerfile: force upgrade pip and jaraco.context post-install

This commit is contained in:
Username
2026-01-20 08:16:49 +01:00
parent e4b313041e
commit aba81f908e

View File

@@ -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)