DhanushMahesh commited on
Commit
4578416
·
verified ·
1 Parent(s): 322b5be

fix: update dockerfile exposed to default HF port

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -2
Dockerfile CHANGED
@@ -13,7 +13,7 @@ RUN pip install --no-cache-dir -r requirements.txt
13
  COPY . .
14
 
15
  # Expose the port FastAPI runs on
16
- EXPOSE 8000
17
 
18
  # Run the application with Uvicorn
19
- CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "8000"]
 
13
  COPY . .
14
 
15
  # Expose the port FastAPI runs on
16
+ EXPOSE 7860
17
 
18
  # Run the application with Uvicorn
19
+ CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]