Mbonea commited on
Commit
a48a15a
1 Parent(s): 040bd2a

missing command in last

Browse files
Files changed (1) hide show
  1. Dockerfile +1 -1
Dockerfile CHANGED
@@ -54,4 +54,4 @@ RUN pip install --no-cache-dir -r requirements.txt
54
  RUN rm thorium-browser_117.0.5938.157_amd64.deb
55
 
56
  # Command to run the application
57
- CMD python -m http.server 8080
 
54
  RUN rm thorium-browser_117.0.5938.157_amd64.deb
55
 
56
  # Command to run the application
57
+ CMD uvicorn App.app:app --host 0.0.0.0 --port 7860 --workers 4 & celery -A App.Worker.celery worker -c 4 --loglevel=DEBUG