circulartext commited on
Commit
8a74a9b
1 Parent(s): 484cf90

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -2
Dockerfile CHANGED
@@ -38,5 +38,5 @@ USER appuser
38
  # Define the entrypoint script to handle user creation and application startup
39
  ENTRYPOINT ["/usr/local/bin/entrypoint.sh"]
40
 
41
- # Default command to run if the user doesn't provide a command
42
- CMD ["uvicorn", "app.main:app", "--host", "0.0.0.0", "--port", "7860", "--reload"]
 
38
  # Define the entrypoint script to handle user creation and application startup
39
  ENTRYPOINT ["/usr/local/bin/entrypoint.sh"]
40
 
41
+ # Specify the command to run your application
42
+ CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]