Skip to content

Commit

Permalink
build(docker): pin setuptools to v70 (#593)
Browse files Browse the repository at this point in the history
Fix `packaging.version.InvalidVersion` when installing the Python
dependencies.
  • Loading branch information
mdonadoni committed Jul 30, 2024
1 parent 90623e4 commit ba50def
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ RUN apt-get update -y && \
python3.8 \
python3.8-dev \
vim-tiny && \
pip install --no-cache-dir --upgrade pip setuptools && \
pip install --no-cache-dir --upgrade pip 'setuptools<71' && \
pip install --no-cache-dir -r /code/requirements.txt && \
apt-get remove -y \
gcc \
Expand Down

0 comments on commit ba50def

Please sign in to comment.