A2209 commited on
Commit
d69a19f
·
verified ·
1 Parent(s): 1d22b16

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -1
Dockerfile CHANGED
@@ -6,9 +6,10 @@ WORKDIR /app
6
 
7
  # Copy requirements and install
8
  COPY requirements.txt .
 
9
  RUN pip install --no-cache-dir Cython
 
10
 
11
- RUN pip install --no-cache-dir -r requirements.txt
12
 
13
  # Copy app
14
  COPY app.py .
 
6
 
7
  # Copy requirements and install
8
  COPY requirements.txt .
9
+ RUN pip install --no-cache-dir --upgrade pip setuptools wheel
10
  RUN pip install --no-cache-dir Cython
11
+ RUN pip install --no-cache-dir --no-build-isolation -r requirements.txt
12
 
 
13
 
14
  # Copy app
15
  COPY app.py .