GhylB commited on
Commit
415f34f
·
1 Parent(s): 399869e

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -2
Dockerfile CHANGED
@@ -11,7 +11,7 @@ COPY . /app
11
  RUN pip install --no-cache-dir fastapi pydantic uvicorn scikit-learn joblib pandas numpy
12
 
13
  # Expose the API port
14
- EXPOSE 80
15
 
16
  # Start the API
17
- CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "80"]
 
11
  RUN pip install --no-cache-dir fastapi pydantic uvicorn scikit-learn joblib pandas numpy
12
 
13
  # Expose the API port
14
+ EXPOSE 8080
15
 
16
  # Start the API
17
+ CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "8080"]