We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8af1a53 commit 1078e2fCopy full SHA for 1078e2f
2 files changed
enforcer/Dockerfile
@@ -18,9 +18,8 @@ COPY ./resources/ resources/
18
COPY ./requirements.txt requirements.txt
19
20
21
-RUN pip install --no-cache-dir --upgrade pip
22
-# Install the project dependencies
23
-RUN python -m ensurepip --upgrade
+RUN pip install --no-cache-dir "pip>=25.3" \
+ && rm -rf /usr/local/lib/python3.12/ensurepip/_bundled/pip-*.whl
24
RUN pip install --no-cache-dir -r requirements.txt
25
26
CMD ["python", "enforcer_main.py"]
enforcer/requirements.txt
@@ -7,4 +7,4 @@ cachetools==5.3.3
7
prometheus-client==0.20.0
8
kubernetes==26.1.0
9
pyasn1>=0.6.2
10
-urllib3==2.6.2
+urllib3==2.6.3
0 commit comments