Spaces:
Sleeping
Sleeping
Update Dockerfile
Browse files- Dockerfile +2 -1
Dockerfile
CHANGED
@@ -14,4 +14,5 @@ RUN pip install --no-cache-dir -r requirements.txt
|
|
14 |
EXPOSE 8000
|
15 |
|
16 |
# Command to run the app
|
17 |
-
CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "8000"]
|
|
|
|
14 |
EXPOSE 8000
|
15 |
|
16 |
# Command to run the app
|
17 |
+
#CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "8000"]
|
18 |
+
CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "8000", "--loop", "asyncio"]
|