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