We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c72c7de commit bf2df30Copy full SHA for bf2df30
Dockerfile
@@ -1,6 +1,6 @@
1
FROM python:3.12-slim
2
3
-RUN python -m pip install --no-cache-dir --upgrade pip==25.3
+RUN python -m pip install --no-cache-dir --upgrade "pip>=25.3"
4
5
# Install curl for healthcheck
6
RUN apt-get update && \
docker/package-restore.sh
@@ -7,7 +7,7 @@ if [ ! -d "venv" ]
7
then
8
python3 -m venv venv
9
. venv/bin/activate
10
- pip install --upgrade pip==25.3
+ pip install --upgrade "pip>=25.3"
11
if [ -f "requirements.txt" ]
12
13
pip install -r requirements.txt
0 commit comments