tianlong12 commited on
Commit
0eb7533
1 Parent(s): c8d3d9b

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +3 -2
Dockerfile CHANGED
@@ -3,8 +3,9 @@ FROM python:3.9
3
  WORKDIR /code
4
 
5
  COPY ./requirements.txt /code/requirements.txt
 
6
  RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
7
 
8
- COPY ./main.py /code/main.py
9
 
10
- CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "7860"]
 
3
  WORKDIR /code
4
 
5
  COPY ./requirements.txt /code/requirements.txt
6
+
7
  RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
8
 
9
+ COPY . /code
10
 
11
+ CMD ["gunicorn", "app:app", "--bind", "0.0.0.0:7860"]