From e269e19f233bc6003c179039bd51239f2b13ca27 Mon Sep 17 00:00:00 2001 From: Chris Farhood Date: Wed, 25 Feb 2026 18:51:25 -0500 Subject: [PATCH] fix: pipe install script to bash, not sh Co-Authored-By: Claude Opus 4.6 --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 8ec4011..7b38891 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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') && \