diff --git a/Dockerfile b/Dockerfile index 44e697d..4a72d27 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,7 @@ FROM python:3.12-slim +RUN python -m pip install --no-cache-dir --upgrade "pip>=25.3" + # Install curl for healthcheck RUN apt-get update && \ apt-get install -y curl git && \ diff --git a/docker/package-restore.sh b/docker/package-restore.sh index cfa86c2..8453409 100755 --- a/docker/package-restore.sh +++ b/docker/package-restore.sh @@ -7,6 +7,7 @@ if [ ! -d "venv" ] then python3 -m venv venv . venv/bin/activate + pip install --upgrade "pip>=25.3" if [ -f "requirements.txt" ] then pip install -r requirements.txt