Spaces:
Build error
Build error
Update Dockerfile
Browse files- Dockerfile +1 -0
Dockerfile
CHANGED
@@ -22,4 +22,5 @@ RUN pip install --no-cache-dir --upgrade -r requirements.txt
|
|
22 |
COPY --chown=user . /app
|
23 |
|
24 |
# Run the application
|
|
|
25 |
CMD ["gunicorn", "-w", "4", "-b", "0.0.0.0:8080", "app:app"]
|
|
|
22 |
COPY --chown=user . /app
|
23 |
|
24 |
# Run the application
|
25 |
+
CMD ["uvicorn", "-w", "4", "-b", "0.0.0.0:8080", "app:app"]
|
26 |
CMD ["gunicorn", "-w", "4", "-b", "0.0.0.0:8080", "app:app"]
|