Update Dockerfile
Browse files- Dockerfile +2 -1
Dockerfile
CHANGED
|
@@ -10,4 +10,5 @@ RUN pip install --no-cache-dir -r requirements.txt
|
|
| 10 |
|
| 11 |
COPY . .
|
| 12 |
|
| 13 |
-
|
|
|
|
|
|
| 10 |
|
| 11 |
COPY . .
|
| 12 |
|
| 13 |
+
# The final ASGI app is named 'app' in app.py (the result of gr.mount_gradio_app)
|
| 14 |
+
CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]
|