From 805cd849fb4e662d2ea7efa404d19f69c98c9b26 Mon Sep 17 00:00:00 2001 From: hailin Date: Sun, 8 Mar 2026 06:21:56 -0700 Subject: [PATCH] fix(bridge): use correct openclaw entry point dist/index.js openclaw package.json main=dist/index.js, not dist/openclaw.mjs. The bin wrapper file is not copied into the Docker image. Co-Authored-By: Claude Sonnet 4.6 --- packages/openclaw-bridge/supervisord.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/openclaw-bridge/supervisord.conf b/packages/openclaw-bridge/supervisord.conf index 8197b7c..2d674ce 100644 --- a/packages/openclaw-bridge/supervisord.conf +++ b/packages/openclaw-bridge/supervisord.conf @@ -14,7 +14,7 @@ pidfile=/tmp/supervisord.pid ; OpenClaw gateway process [program:openclaw] -command=node /app/openclaw/dist/openclaw.mjs +command=node /app/openclaw/dist/index.js directory=/app/openclaw autostart=true autorestart=true