missing command in last
Browse files- 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
|
|
|
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
|