saicharan1234 commited on
Commit
17d4cd5
·
1 Parent(s): 073fb1e

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +1 -5
Dockerfile CHANGED
@@ -19,11 +19,7 @@ WORKDIR $HOME/app
19
  COPY --chown=user . $HOME/app
20
 
21
 
22
- # Expose the port that the application will be running on
23
- EXPOSE 8000
24
-
25
- # Run the application
26
- CMD ["uvicorn", "main:app"]
27
 
28
 
29
 
 
19
  COPY --chown=user . $HOME/app
20
 
21
 
22
+ CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "7860"]
 
 
 
 
23
 
24
 
25