promptsai commited on
Commit
c386436
·
verified ·
1 Parent(s): 05f909c

Update Dockerfile

Browse files
Files changed (1) hide show
  1. 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 fastapi uvicorn
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