-
-
Notifications
You must be signed in to change notification settings - Fork 40.1k
Closed
Labels
bugSomething isn't workingSomething isn't working
Description
Description
The Dockerfile's CMD doesn't start the gateway server. The container prints CLI help and exits with code 1.
Current Behavior
CMD ["node", "dist/index.js"]This runs the CLI without arguments, which prints help and exits:
🦞 OpenClaw 2026.1.30 (unknown) — Your inbox, your infra, your rules.
Usage: openclaw [options] [command]
...
==> Exited with status 1
Expected Behavior
The CMD should start the gateway:
CMD ["node", "dist/index.js", "gateway"]Environment
- Platform: Render (using the
render.yamlBlueprint) - Deploy method: Blueprint sync from main branch
Steps to Reproduce
- Deploy to Render using the "Deploy to Render" button
- Watch the deploy fail with health check timeout
- Check logs - container prints CLI help and exits
Suggested Fix
- CMD ["node", "dist/index.js"]
+ CMD ["node", "dist/index.js", "gateway"]The render.yaml doesn't specify a dockerCommand override, so it relies on the Dockerfile's CMD.

Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't working