Skip to content

Commit 4d0a291

Browse files
fix(docker): remove default --help argument from CMD
The proxy.ts file expects a server URL as first argument, so having --help as default CMD causes parsing errors. Empty CMD allows proper argument passing.
1 parent 8af2ed6 commit 4d0a291

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,4 +60,4 @@ ENV MCP_REMOTE_CONFIG_DIR=/home/mcp/.mcp-auth
6060
ENTRYPOINT ["node", "dist/proxy.js"]
6161

6262
# Default arguments (can be overridden)
63-
CMD ["--help"]
63+
CMD []

0 commit comments

Comments
 (0)