diff --git a/Dockerfile b/Dockerfile index 935fc06..07f2bbc 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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"] \ No newline at end of file +CMD ["--transport", "http", "--port", "8080"] \ No newline at end of file