MFF212 commited on
Commit
cb66033
·
verified ·
1 Parent(s): c2ab743

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -2
Dockerfile CHANGED
@@ -23,5 +23,5 @@ RUN uv sync
23
  # Copy the rest of the app
24
  COPY --chown=user . .
25
 
26
- # Run your bot
27
- CMD ["uv", "run", "bot.py","--host", "0.0.0.0", "--port", "7860"]
 
23
  # Copy the rest of the app
24
  COPY --chown=user . .
25
 
26
+ # START FASTAPI (THIS IS THE KEY FIX)
27
+ CMD ["uv", "run", "uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]