fix: pipe install script to bash, not sh

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-02-25 18:51:25 -05:00
parent 3109de7e2e
commit e269e19f23
+1 -1
View File
@@ -65,7 +65,7 @@ RUN curl -fsSL https://deb.nodesource.com/setup_lts.x | bash - && \
RUN npm install -g happy-coder
# Install Claude Code native binary (npm wrapper breaks remote control)
RUN curl -fsSL https://claude.ai/install.sh | sh && claude --version
RUN curl -fsSL https://claude.ai/install.sh | bash && claude --version
# Install OpenCode AI coding agent
RUN OPENCODE_VERSION=$(curl -sL https://api.github.com/repos/opencode-ai/opencode/releases/latest | jq -r '.tag_name') && \