From 7b500bffa813190a4e1ca2a806bdc55a2bd15c51 Mon Sep 17 00:00:00 2001 From: Barry Yip Date: Thu, 15 May 2025 01:35:12 +0800 Subject: [PATCH] Update Dockerfile --- Dockerfile | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/Dockerfile b/Dockerfile index 064dfd8..1195063 100644 --- a/Dockerfile +++ b/Dockerfile @@ -16,8 +16,7 @@ COPY . . # Build the TypeScript code RUN npm run build -# Expose HTTP port (default 3000 as specified in smithery.yaml) -EXPOSE 3000 +# Expose any port if needed (Not required for stdio deployment) -# Default command to run the MCP server with HTTP transport -CMD ["node", "build/index.js", "--transport", "http", "--port", "3000"] +# Default command to run the MCP server +CMD ["node", "build/index.js"] \ No newline at end of file