Kaballas commited on
Commit
78a34c3
·
1 Parent(s): 3bd7f61
Files changed (1) hide show
  1. Dockerfile +2 -2
Dockerfile CHANGED
@@ -42,5 +42,5 @@ ENV HOME=/home/user \
42
 
43
  EXPOSE 7860
44
 
45
- # Run the server using uv as a module, compatible with Hugging Face Spaces
46
- CMD ["uvicorn", "mcp_server_mariadb_vector.server:app", "--host", "0.0.0.0", "--port", "7860"]
 
42
 
43
  EXPOSE 7860
44
 
45
+ # Run the server using uvicorn with app.py as the entrypoint
46
+ CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]