Mridul2003 commited on
Commit
10128bc
·
verified ·
1 Parent(s): 6763770

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +3 -2
Dockerfile CHANGED
@@ -14,9 +14,10 @@ RUN pip install -r requirements.txt
14
 
15
  COPY . .
16
 
17
- EXPOSE 3000
18
 
19
- CMD ["uvicorn", "api:app", "--host", "0.0.0.0", "--port", "3000"]
 
20
 
21
 
22
 
 
14
 
15
  COPY . .
16
 
17
+ EXPOSE 7860
18
 
19
+ # CMD ["uvicorn", "api:app", "--host", "0.0.0.0", "--port", "3000"]
20
+ CMD["python","api.py"]
21
 
22
 
23