Monorepo for Aesthetic.Computer aesthetic.computer
4
fork

Configure Feed

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

fix: install Claude Code via npm instead of tarball download

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

+3 -5
+3 -5
fedac/native/Dockerfile.builder
··· 50 50 # ── Install esbuild for KidLisp bundling ── 51 51 RUN npm install -g esbuild 52 52 53 - # ── Download Claude Code CLI (static binary) ── 54 - RUN curl -sL https://storage.googleapis.com/anthropic-sdk/claude-code/claude-code-latest-linux-x64.tar.gz \ 55 - | tar xz -C /usr/local/bin/ 2>/dev/null \ 56 - && chmod +x /usr/local/bin/claude 2>/dev/null \ 57 - || echo "Claude Code download skipped (non-fatal)" 53 + # ── Install Claude Code CLI ── 54 + RUN npm install -g @anthropic-ai/claude-code 2>/dev/null \ 55 + || echo "Claude Code install skipped (non-fatal)" 58 56 59 57 # ── Verify tools ── 60 58 RUN gcc --version | head -1 && busybox --help >/dev/null 2>&1 && esbuild --version && echo "OK"