Spaces:
Runtime error
Runtime error
Update Dockerfile
Browse files- Dockerfile +1 -2
Dockerfile
CHANGED
|
@@ -5,10 +5,9 @@ FROM python:3.9
|
|
| 5 |
|
| 6 |
WORKDIR /code
|
| 7 |
|
| 8 |
-
COPY ./requirements.txt /code/requirements.txt
|
| 9 |
|
| 10 |
RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
|
| 11 |
-
RUN pip install
|
| 12 |
|
| 13 |
COPY . .
|
| 14 |
|
|
|
|
| 5 |
|
| 6 |
WORKDIR /code
|
| 7 |
|
|
|
|
| 8 |
|
| 9 |
RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
|
| 10 |
+
RUN pip install uvicorn torch torchvision numpy>=1.16.5 scipy>=1.3.0 opencv-python gdown Pillow gradio
|
| 11 |
|
| 12 |
COPY . .
|
| 13 |
|