fix: upgrade pip in container image (CVE-2026-1703)
All checks were successful
ci / secrets (push) Successful in 10s
ci / test (push) Successful in 21s
ci / build (push) Successful in 23s

Path traversal in malicious wheel extraction, fixed in pip 26.0.
This commit is contained in:
user
2026-02-21 18:50:35 +01:00
parent a741c0a017
commit c1c92ddc39

View File

@@ -1,6 +1,7 @@
FROM python:3.13-alpine
RUN pip install --no-cache-dir pyyaml>=6.0
RUN pip install --no-cache-dir --upgrade pip && \
pip install --no-cache-dir pyyaml>=6.0
WORKDIR /app