Update Dockerfile

This commit is contained in:
qiaofeng1227 2023-03-30 13:21:13 +08:00 committed by GitHub
parent e2f7338fc2
commit 01b6ca1d89
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

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