xeroISB commited on
Commit
0b13ba4
·
verified ·
1 Parent(s): 93917d8

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -3
Dockerfile CHANGED
@@ -11,8 +11,7 @@ COPY . /app
11
  RUN pip install -r app/requirements.txt
12
 
13
  # Expose port 80 for the API
14
- EXPOSE 80
15
 
16
  # Run the FastAPI server with Uvicorn
17
- CMD ["uvicorn", "app.main:app", "--host", "0.0.0.0", "--port", "80"]
18
-
 
11
  RUN pip install -r app/requirements.txt
12
 
13
  # Expose port 80 for the API
14
+ EXPOSE 8000
15
 
16
  # Run the FastAPI server with Uvicorn
17
+ CMD ["uvicorn", "app.main:app", "--host", "0.0.0.0", "--port", "8000"]