Skip to content

Commit 5db2618

Browse files
authored
Update pip to 25.3 or greater (#14)
1 parent 3dcbec9 commit 5db2618

File tree

2 files changed

+3
-0
lines changed

2 files changed

+3
-0
lines changed

Dockerfile

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
FROM python:3.12-slim
22

3+
RUN python -m pip install --no-cache-dir --upgrade "pip>=25.3"
4+
35
# Install curl for healthcheck
46
RUN apt-get update && \
57
apt-get install -y curl git && \

docker/package-restore.sh

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

0 commit comments

Comments
 (0)