Leandro Artaza commited on
Commit
4f7da96
1 Parent(s): 0828a7b

Cambiar port

Browse files
Files changed (1) hide show
  1. Dockerfile +3 -3
Dockerfile CHANGED
@@ -23,8 +23,8 @@ RUN pip install --no-cache-dir --upgrade -r /app/requirements.txt
23
  # Copy the content of the local src directory to the working directory
24
  COPY . .
25
 
26
- # Make port 7860 available to the world outside this container
27
- # EXPOSE 7860
28
 
29
  # Command to run the application
30
- CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "7860"]
 
23
  # Copy the content of the local src directory to the working directory
24
  COPY . .
25
 
26
+ # Make port X available to the world outside this container
27
+ EXPOSE 5000
28
 
29
  # Command to run the application
30
+ CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "5000"]