Skip to content

Commit 37fa4a0

Browse files
authored
Pin to pip==25.0.1 (#18069)
1 parent bb35992 commit 37fa4a0

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

Dockerfile

+4-2
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,8 @@ ENV PATH="/opt/warehouse/bin:${PATH}"
6767

6868
# Next, we want to update pip inside of this virtual
6969
# environment to ensure that we have the latest version.
70-
RUN pip --no-cache-dir --disable-pip-version-check install --upgrade pip
70+
# Pinned due to https://github.com/jazzband/pip-tools/issues/2176
71+
RUN pip --no-cache-dir --disable-pip-version-check install --upgrade pip==25.0.1
7172

7273
# We copy this into the docker container prior to copying in the rest of our
7374
# application so that we can skip installing requirements if the only thing
@@ -148,7 +149,8 @@ ENV PATH="/opt/warehouse/bin:${PATH}"
148149

149150
# Next, we want to update pip inside of this virtual
150151
# environment to ensure that we have the latest version.
151-
RUN pip --no-cache-dir --disable-pip-version-check install --upgrade pip
152+
# Pinned due to https://github.com/jazzband/pip-tools/issues/2176
153+
RUN pip --no-cache-dir --disable-pip-version-check install --upgrade pip==25.0.1
152154

153155
# We copy this into the docker container prior to copying in the rest of our
154156
# application so that we can skip installing requirements if the only thing

0 commit comments

Comments
 (0)