From 95e9c3de957e0a8e697b8be1c26446b62257d180 Mon Sep 17 00:00:00 2001 From: chiDT Date: Mon, 8 Sep 2025 21:30:11 +0900 Subject: [PATCH] Run SuperClaude install in background MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Split SuperClaude installation into two steps - Run 'SuperClaude install' in background to avoid blocking startup - Allows container to start faster while setup completes 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude --- entrypoint.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/entrypoint.sh b/entrypoint.sh index dd89f5c..8f6b567 100644 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -56,7 +56,8 @@ set -e su - $XWINDOW_USER -c "rm -rf ~/.config/chromium/" # install super-claude -su - $XWINDOW_USER -c "pipx install SuperClaude && pipx upgrade SuperClaude && SuperClaude install" +su - $XWINDOW_USER -c "pipx install SuperClaude && pipx upgrade SuperClaude" +su - $XWINDOW_USER -c "SuperClaude install" & # start code-server in background su - $XWINDOW_USER -c "code-server --bind-addr 0.0.0.0:30145 --auth password /mnt" &