Kaballas commited on
Commit
ad8a0e6
·
verified ·
1 Parent(s): f9c8cf7

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -1
Dockerfile CHANGED
@@ -14,4 +14,5 @@ ENV HOME=/home/user \
14
 
15
  COPY --chown=user . /home/user/app
16
 
17
- CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "7860"]
 
 
14
 
15
  COPY --chown=user . /home/user/app
16
 
17
+ # Use the base image's expected entry point instead of uvicorn
18
+ CMD ["python", "/usr/local/lib/python3.10/site-packages/mcp_memory_service/server.py"]