feat(Dockerfile): update entrypoint for MCP server
- Change entrypoint to use build/app.js
This commit is contained in:
parent
95cfd6c2cc
commit
a716a963a9
|
|
@ -19,5 +19,7 @@ RUN npm run build
|
||||||
# Expose HTTP port
|
# Expose HTTP port
|
||||||
EXPOSE 8080
|
EXPOSE 8080
|
||||||
|
|
||||||
|
# entrypoint to run the MCP server
|
||||||
|
ENTRYPOINT ["node", "build/app.js"]
|
||||||
# Default command to run the MCP server with HTTP transport
|
# Default command to run the MCP server with HTTP transport
|
||||||
CMD ["node", "build/index.js", "--transport", "http", "--port", "8080"]
|
CMD ["--transport", "http", "--port", "8080"]
|
||||||
Loading…
Reference in New Issue