From 696f0a0024accd2ca3005e98578f6e3aff497def Mon Sep 17 00:00:00 2001 From: Clawdbot Date: Thu, 12 Feb 2026 12:28:44 +1100 Subject: [PATCH] fix: correct CMD args for FastMCP CLI (subcommand vs flag) --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index d9f801f..4f30625 100644 --- a/Dockerfile +++ b/Dockerfile @@ -23,4 +23,4 @@ USER appuser EXPOSE 8000 # Run in SSE mode -CMD ["python", "server.py", "--transport", "sse", "--port", "8000", "--host", "0.0.0.0"] +CMD ["python", "server.py", "sse", "--host", "0.0.0.0", "--port", "8000"]