Spaces:
Paused
Paused
change pip
Browse files- Dockerfile +1 -1
Dockerfile
CHANGED
@@ -3,7 +3,7 @@ FROM python:3.9
|
|
3 |
WORKDIR /app
|
4 |
|
5 |
COPY ./requirements.txt /app/requirements.txt
|
6 |
-
RUN pip install --no-cache-dir --upgrade -r /app/requirements.txt
|
7 |
|
8 |
COPY . .
|
9 |
|
|
|
3 |
WORKDIR /app
|
4 |
|
5 |
COPY ./requirements.txt /app/requirements.txt
|
6 |
+
RUN pip install --no-cache-dir --upgrade -r /app/requirements.txt --extra-index-url https://download.pytorch.org/whl/cu113
|
7 |
|
8 |
COPY . .
|
9 |
|