petter2025 commited on
Commit
cbd8fcc
·
verified ·
1 Parent(s): 359dfd1

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -1
Dockerfile CHANGED
@@ -10,4 +10,5 @@ RUN pip install --no-cache-dir -r requirements.txt
10
 
11
  COPY . .
12
 
13
- CMD ["uvicorn", "app:fastapi_app", "--host", "0.0.0.0", "--port", "7860"]
 
 
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"]