aznasut commited on
Commit
3cb5b13
·
1 Parent(s): e11afaf

trigger pipeline

Browse files
Files changed (1) hide show
  1. Dockerfile +3 -3
Dockerfile CHANGED
@@ -18,8 +18,8 @@ COPY . /app
18
  # Install any needed packages specified in requirements.txt
19
  RUN pip install --no-cache-dir -r requirements.txt
20
 
21
- # Make port 8000 available to the world outside this container
22
- EXPOSE 8000
23
 
24
  # Command to run the Uvicorn server
25
- CMD ["uvicorn", "main:app", "--host", "localhost", "--port", "7860"]
 
18
  # Install any needed packages specified in requirements.txt
19
  RUN pip install --no-cache-dir -r requirements.txt
20
 
21
+ # Make port 7680 available to the world outside this container
22
+ EXPOSE 7860
23
 
24
  # Command to run the Uvicorn server
25
+ CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "7860"]