SaviniLakna commited on
Commit
6978540
1 Parent(s): 184020b

commit id #5

Browse files
Files changed (2) hide show
  1. Dockerfile +2 -5
  2. requirements.txt +0 -0
Dockerfile CHANGED
@@ -1,14 +1,11 @@
1
- # read the doc: https://huggingface.co/docs/hub/spaces-sdks-docker
2
- # you will also find guides on how best to write your Dockerfile
3
-
4
  FROM python:3.10.11
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
 
12
  COPY . .
13
 
14
- CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "7860"]
 
 
 
 
1
  FROM python:3.10.11
2
 
3
  WORKDIR /code
4
 
5
  COPY ./requirements.txt /code/requirements.txt
6
 
7
+ RUN pip install --no-cache-dir -r /code/requirements.txt
8
 
9
  COPY . .
10
 
11
+ CMD ["gunicorn", "-b", "0.0.0.0:7860", "main:app"]
requirements.txt CHANGED
Binary files a/requirements.txt and b/requirements.txt differ