Monorepo for Aesthetic.Computer aesthetic.computer
4
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix: use install.sh for Claude Code native binary instead of npm

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>

+1 -2
+1 -2
fedac/native/Dockerfile.builder
··· 51 51 RUN npm install -g esbuild 52 52 53 53 # ── Install Claude Code CLI (native binary) ── 54 - RUN npm install -g @anthropic-ai/claude-code 2>/dev/null \ 55 - && claude --version 2>/dev/null \ 54 + RUN curl -fsSL https://claude.ai/install.sh | bash 2>/dev/null \ 56 55 && CLAUDE_BIN=$(find /root/.local/share/claude/versions -type f 2>/dev/null | sort -V | tail -1) \ 57 56 && if [ -n "$CLAUDE_BIN" ]; then cp "$CLAUDE_BIN" /usr/local/bin/claude-native && chmod +x /usr/local/bin/claude-native; fi \ 58 57 || echo "Claude Code install skipped (non-fatal)"