Huiran Yu commited on
Commit
8bcc6d5
·
1 Parent(s): 4c0769b

setuptools

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -2
Dockerfile CHANGED
@@ -16,9 +16,9 @@ COPY requirements.txt /app/requirements.txt
16
  # disable build isolation so Cython installed in the environment is visible at build time
17
  ENV PIP_NO_BUILD_ISOLATION=1
18
 
19
- RUN pip install --no-cache-dir -U pip setuptools wheel \
 
20
  && pip install --no-cache-dir -r /app/requirements.txt \
21
- && pip install --no-cache-dir -U Cython \
22
  && pip install --no-cache-dir --no-build-isolation madmom==0.16.1
23
 
24
  RUN python -c "import setuptools, pkg_resources; print('setuptools OK')"
 
16
  # disable build isolation so Cython installed in the environment is visible at build time
17
  ENV PIP_NO_BUILD_ISOLATION=1
18
 
19
+ RUN pip install --no-cache-dir -U pip wheel Cython \
20
+ && pip install --no-cache-dir setuptools==80.9.0 \
21
  && pip install --no-cache-dir -r /app/requirements.txt \
 
22
  && pip install --no-cache-dir --no-build-isolation madmom==0.16.1
23
 
24
  RUN python -c "import setuptools, pkg_resources; print('setuptools OK')"