Senara commited on
Commit
6102d1f
1 Parent(s): 86d98b5

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -1
Dockerfile CHANGED
@@ -8,7 +8,8 @@ WORKDIR /code
8
  COPY ./requirements.txt /code/requirements.txt
9
 
10
  RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
 
11
 
12
  COPY . .
13
 
14
- CMD ["gunicorn", "-b", "0.0.0.0:7860", "app:app"]
 
8
  COPY ./requirements.txt /code/requirements.txt
9
 
10
  RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
11
+ RUN pip install gunicorn
12
 
13
  COPY . .
14
 
15
+ CMD ["gunicorn", "-b", "0.0.0.0:7860", "app:app"]