Skip to content

Commit bf2df30

Browse files
committed
Allow higher then 25.3
1 parent c72c7de commit bf2df30

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
FROM python:3.12-slim
22

3-
RUN python -m pip install --no-cache-dir --upgrade pip==25.3
3+
RUN python -m pip install --no-cache-dir --upgrade "pip>=25.3"
44

55
# Install curl for healthcheck
66
RUN apt-get update && \

docker/package-restore.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ if [ ! -d "venv" ]
77
then
88
python3 -m venv venv
99
. venv/bin/activate
10-
pip install --upgrade pip==25.3
10+
pip install --upgrade "pip>=25.3"
1111
if [ -f "requirements.txt" ]
1212
then
1313
pip install -r requirements.txt

0 commit comments

Comments
 (0)