Jack commited on
Commit
ea621e8
·
1 Parent(s): ce09431

added various files

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -2
Dockerfile CHANGED
@@ -19,5 +19,5 @@ RUN pip install -r requirements.txt
19
  # Expose the correct port that the app will run on
20
  EXPOSE 7860
21
 
22
- # Run the application with proper WebSocket support
23
- CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860", "--ws", "websockets"]
 
19
  # Expose the correct port that the app will run on
20
  EXPOSE 7860
21
 
22
+ # Run the application with Chainlit's native command
23
+ CMD ["chainlit", "run", "app.py", "--host", "0.0.0.0", "--port", "7860", "--ws", "websockets"]