fix
Browse files- Dockerfile +1 -1
Dockerfile
CHANGED
@@ -14,7 +14,7 @@ RUN pip install --no-cache-dir -r requirements.txt
|
|
14 |
COPY . /srv
|
15 |
|
16 |
# Command to run the application
|
17 |
-
CMD uvicorn App.app:app --host 0.0.0.0 --port 7860 & celery -A App.Worker.celery worker -c 8 --
|
18 |
|
19 |
# Expose the server port
|
20 |
EXPOSE 7860
|
|
|
14 |
COPY . /srv
|
15 |
|
16 |
# Command to run the application
|
17 |
+
CMD uvicorn App.app:app --host 0.0.0.0 --port 7860 & celery -A App.Worker.celery worker -c 8 --loglevel=info
|
18 |
|
19 |
# Expose the server port
|
20 |
EXPOSE 7860
|