Update Dockerfile
Browse files- Dockerfile +1 -1
Dockerfile
CHANGED
@@ -15,4 +15,4 @@ RUN pip install --no-cache-dir --upgrade pip && \
|
|
15 |
EXPOSE 8001
|
16 |
|
17 |
# Command to run the app with Gunicorn and Uvicorn workers
|
18 |
-
CMD ["gunicorn", "-k", "uvicorn.workers.UvicornWorker", "--workers", "4", "--bind", "0.0.0.0:8001", "main:app"]
|
|
|
15 |
EXPOSE 8001
|
16 |
|
17 |
# Command to run the app with Gunicorn and Uvicorn workers
|
18 |
+
CMD ["gunicorn", "-k", "uvicorn.workers.UvicornWorker", "--workers", "4", "--bind", "0.0.0.0:8001", "main:app"]
|