marquesafonso commited on
Commit
0c39cf3
·
1 Parent(s): 40b29fd

add entrypoint to Dockerfile (correct port)

Browse files
Files changed (1) hide show
  1. Dockerfile +1 -1
Dockerfile CHANGED
@@ -18,6 +18,6 @@ RUN pip install --no-cache-dir -r requirements.txt
18
  EXPOSE 8000
19
 
20
  # Run main.py when the container launches
21
- CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "7860"]
22
 
23
  USER 1001
 
18
  EXPOSE 8000
19
 
20
  # Run main.py when the container launches
21
+ CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "8000"]
22
 
23
  USER 1001