feat(Dockerfile): update entrypoint for MCP server

- Change entrypoint to use build/app.js
This commit is contained in:
Sooty 2025-10-21 20:04:32 +01:00
parent 95cfd6c2cc
commit a716a963a9
1 changed files with 3 additions and 1 deletions

View File

@ -19,5 +19,7 @@ RUN npm run build
# Expose HTTP port
EXPOSE 8080
# entrypoint to run the MCP server
ENTRYPOINT ["node", "build/app.js"]
# Default command to run the MCP server with HTTP transport
CMD ["node", "build/index.js", "--transport", "http", "--port", "8080"]
CMD ["--transport", "http", "--port", "8080"]