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

Split pip

Browse files
Files changed (1) hide show
  1. Dockerfile +4 -4
Dockerfile CHANGED
@@ -16,10 +16,10 @@ 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 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')"
25
 
 
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
+ RUN pip install --no-cache-dir setuptools==80.9.0
21
+ RUN pip install --no-cache-dir -r /app/requirements.txt
22
+ RUN pip install --no-cache-dir --no-build-isolation madmom==0.16.1
23
 
24
  RUN python -c "import setuptools, pkg_resources; print('setuptools OK')"
25