fix: correct CMD args for FastMCP CLI (subcommand vs flag)

This commit is contained in:
Clawdbot
2026-02-12 12:28:44 +11:00
parent b4391cb650
commit 696f0a0024

View File

@@ -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"]