Skip to content

Commit 43a8980

Browse files
committed
chore: Lock in pip to version 24.0
* Installing pip 24.0 to avoid build failure see [pypa/pip#12063](pypa/pip#12063) * FIxes Issue #294 Issue: #294
1 parent fa48779 commit 43a8980

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
2525
libatlas-base-dev libhdf5-dev libavutil-dev libswresample-dev libavcodec-dev libavformat-dev libswscale-dev \
2626
&& mkdir -p /nefarious-db \
2727
&& python -m venv /env \
28-
&& /env/bin/pip install -U pip \
28+
&& /env/bin/pip install --force-reinstall -v "pip==24.0" \
2929
&& /env/bin/pip install --no-cache-dir --only-binary :all: --extra-index-url https://www.piwheels.org/simple -r requirements.txt \
3030
&& /env/bin/python manage.py collectstatic --no-input \
3131
&& apt-get autoremove -y \

0 commit comments

Comments
 (0)