Skip to content

Commit 231ec08

Browse files
committed
[Quick Fix] Use static version for setuptools
- Fix InvalidVersion error
1 parent 3f1c8d5 commit 231ec08

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

mapswipe_workers/Dockerfile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,8 @@ RUN mkdir --parents .local/share/mapswipe_workers
1919
COPY . .
2020

2121
# Update setuptools and install mapswipe-workers with dependencies (requirements.txt)
22-
RUN pip3 install --upgrade setuptools
22+
# XXX: setuptools==70.3.0 Fix packaging.version.InvalidVersion error
23+
RUN pip3 install --upgrade "setuptools==70.3.0"
2324
RUN pip3 install .
2425

2526
# Don't use a CMD here, this will be defined in docker-compose.yaml

0 commit comments

Comments
 (0)