Spaces:
Running
Running
Update Dockerfile
Browse files- Dockerfile +1 -1
Dockerfile
CHANGED
@@ -4,7 +4,7 @@ WORKDIR /app
|
|
4 |
COPY . .
|
5 |
|
6 |
RUN pip install --upgrade pip && \
|
7 |
-
pip install torch==2.0.1 --
|
8 |
pip install --no-cache-dir -r requirements.txt
|
9 |
|
10 |
CMD ["gunicorn", "--bind", "0.0.0.0:7860", "app:app"]
|
|
|
4 |
COPY . .
|
5 |
|
6 |
RUN pip install --upgrade pip && \
|
7 |
+
pip install torch==2.0.1 --index-url https://download.pytorch.org/whl/cu118 && \
|
8 |
pip install --no-cache-dir -r requirements.txt
|
9 |
|
10 |
CMD ["gunicorn", "--bind", "0.0.0.0:7860", "app:app"]
|