fix(render): run gateway command in Dockerfile CMD

This commit is contained in:
Ojus Save 2026-01-25 23:10:33 -08:00
parent 6859e1e6a6
commit 4757b129c5

View File

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