From 5cd990b7c98d6c8c07def78025a7512ce4062a6c Mon Sep 17 00:00:00 2001 From: Daniel Liu <139250065@qq.com> Date: Sat, 4 Apr 2026 17:19:05 +0800 Subject: [PATCH] fix(cicd): exec start script from entrypoint Replace the final start.sh invocation with exec in the container entrypoint. This removes one extra shell layer so the start script inherits the entrypoint process directly. --- cicd/entry.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cicd/entry.sh b/cicd/entry.sh index 97118b672ee6..ea14f579b099 100755 --- a/cicd/entry.sh +++ b/cicd/entry.sh @@ -17,4 +17,4 @@ echo "Select to run $NETWORK..." cp -n /work/"$NETWORK"/* /work echo "Start Node..." -/work/start.sh +exec /work/start.sh