File tree 1 file changed +4
-2
lines changed
1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -67,7 +67,8 @@ ENV PATH="/opt/warehouse/bin:${PATH}"
67
67
68
68
# Next, we want to update pip inside of this virtual
69
69
# 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
71
72
72
73
# We copy this into the docker container prior to copying in the rest of our
73
74
# application so that we can skip installing requirements if the only thing
@@ -148,7 +149,8 @@ ENV PATH="/opt/warehouse/bin:${PATH}"
148
149
149
150
# Next, we want to update pip inside of this virtual
150
151
# 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
152
154
153
155
# We copy this into the docker container prior to copying in the rest of our
154
156
# application so that we can skip installing requirements if the only thing
You can’t perform that action at this time.
0 commit comments