Browse Source

Update Dockerfile

qiaofeng1227 2 years ago
parent
commit
b54bd8485b
1 changed files with 2 additions and 2 deletions
  1. 2 2
      appmanage/Dockerfile

+ 2 - 2
appmanage/Dockerfile

@@ -10,7 +10,7 @@ COPY requirements.txt main.py  ./
 RUN pip install -r requirements.txt
 RUN pip install -r requirements.txt
 
 
 # Starts our application
 # Starts our application
-CMD ["uvicorn", "main:get_app", "--host", "0.0.0.0", "--port", "5000", "--log-level", "info"]
+CMD ["uvicorn", "main:get_app", "--host", "0.0.0.0", "--port", "8000", "--log-level", "info"]
 
 
 # Expose the port in which the application will be deployed
 # Expose the port in which the application will be deployed
-EXPOSE 5000
+EXPOSE 8000