Update Dockerfile
Browse files- 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 .
|