From a716a963a946001dcb2d68daf5d1460250a3c094 Mon Sep 17 00:00:00 2001 From: Sooty <7614538+SootyOwl@users.noreply.github.com> Date: Tue, 21 Oct 2025 20:04:32 +0100 Subject: [PATCH] feat(Dockerfile): update entrypoint for MCP server - Change entrypoint to use build/app.js --- Dockerfile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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