Update Dockerfile
Browse files- Dockerfile +1 -2
Dockerfile
CHANGED
|
@@ -17,8 +17,7 @@ WORKDIR /app
|
|
| 17 |
COPY requirements.txt .
|
| 18 |
|
| 19 |
RUN pip install --upgrade pip setuptools wheel && \
|
| 20 |
-
pip install --no-cache-dir --index-url https://download.pytorch.org/whl/cpu \
|
| 21 |
-
torch torchaudio && \
|
| 22 |
pip install --no-cache-dir -r requirements.txt
|
| 23 |
|
| 24 |
COPY . .
|
|
|
|
| 17 |
COPY requirements.txt .
|
| 18 |
|
| 19 |
RUN pip install --upgrade pip setuptools wheel && \
|
| 20 |
+
pip install --no-cache-dir --index-url https://download.pytorch.org/whl/cpu torch torchaudio && \
|
|
|
|
| 21 |
pip install --no-cache-dir -r requirements.txt
|
| 22 |
|
| 23 |
COPY . .
|