From 4757b129c5793417a0f9aec1a8d82aedc13a708e Mon Sep 17 00:00:00 2001 From: Ojus Save Date: Sun, 25 Jan 2026 23:10:33 -0800 Subject: [PATCH] fix(render): run gateway command in Dockerfile CMD --- Dockerfile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index a33f0077d..0c6660edc 100644 --- a/Dockerfile +++ b/Dockerfile @@ -32,4 +32,6 @@ RUN pnpm ui:build ENV NODE_ENV=production -CMD ["node", "dist/index.js"] +# Run the gateway with settings suitable for Render deployment +# Token auth uses CLAWDBOT_GATEWAY_TOKEN env var set in render.yaml +CMD ["node", "dist/index.js", "gateway", "--port", "8080", "--bind", "lan", "--auth", "token", "--allow-unconfigured"]