89luca89 / 89luca89/clampdown

Error with Running `make all` on macOS: Error 137

Offen
#30 2 Kommentare 0 Reaktionen 0 zugewiesene Personen Auf GitHub ansehen
Vorherrschende Sprache
Go
Sterne
97
Forks
9
PR-Merge-Kennzahlen
Keine gemergten PRs in 30 T.

Beschreibung

After the fix in issue #29, I then again ran:

```
$ make all
```

And I got this new error:

```
make all
/opt/homebrew/bin/docker build -f container-images/claude/Containerfile -t clampdown-claude:latest container-images/
DEPRECATED: The legacy builder is deprecated and will be removed in a future release.
Install the buildx component to build images with BuildKit:
https://docs.docker.com/go/buildx/

Sending build context to Docker daemon 10.57MB
Step 1/23 : FROM alpine:3.23 AS builder
---> 5b10f432ef3d
Step 2/23 : ARG CLAUDE_VERSION=2.1.114
---> Using cache
---> 2faa2fdd60dc
Step 3/23 : RUN apk add --no-cache bash curl nodejs podman-remote && CLAUDE_CODE_VERSION="${CLAUDE_VERSION}" curl -fsSL https://claude.ai/install.sh | bash
---> Running in c1c423a10020
( 1/48) Installing ncurses-terminfo-base (6.5_p20251123-r0)
( 2/48) Installing libncursesw (6.5_p20251123-r0)
( 3/48) Installing readline (8.3.1-r0)
( 4/48) Installing bash (5.3.3-r1)
Executing bash-5.3.3-r1.post-install
( 5/48) Installing brotli-libs (1.2.0-r0)
( 6/48) Installing c-ares (1.34.6-r0)
( 7/48) Installing libunistring (1.4.1-r0)
( 8/48) Installing libidn2 (2.3.8-r0)
( 9/48) Installing nghttp2-libs (1.69.0-r0)
(10/48) Installing libpsl (0.21.5-r3)
(11/48) Installing zstd-libs (1.5.7-r2)
(12/48) Installing libcurl (8.19.0-r0)
(13/48) Installing curl (8.19.0-r0)
(14/48) Installing ca-certificates (20260413-r0)
(15/48) Installing libgcc (15.2.0-r2)
(16/48) Installing libstdc++ (15.2.0-r2)
(17/48) Installing ada-libs (3.3.0-r0)
(18/48) Installing icu-data-en (76.1-r1)
Executing icu-data-en-76.1-r1.post-install
*
* If you need ICU with non-English locales and legacy charset support, install
* package icu-data-full.
*
(19/48) Installing icu-libs (76.1-r1)
(20/48) Installing simdjson (3.12.0-r0)
(21/48) Installing simdutf (7.5.0-r1)
(22/48) Installing sqlite-libs (3.51.2-r0)
(23/48) Installing nodejs (24.14.1-r0)
(24/48) Installing libffi (3.5.2-r0)
(25/48) Installing libintl (0.24.1-r1)
(26/48) Installing libeconf (0.8.3-r0)
(27/48) Installing libblkid (2.41.4-r0)
(28/48) Installing libmount (2.41.4-r0)
(29/48) Installing pcre2 (10.47-r0)
(30/48) Installing glib (2.86.3-r0)
(31/48) Installing conmon (2.1.13-r0)
(32/48) Installing libcap2 (2.78-r0)
(33/48) Installing libseccomp (2.6.0-r1)
(34/48) Installing yajl (2.1.0-r9)
(35/48) Installing crun (1.27-r0)
(36/48) Installing passt (2025.09.19-r1)
(37/48) Installing libmd (1.1.0-r0)
(38/48) Installing libbsd (0.12.2-r0)
(39/48) Installing skalibs-libs (2.14.4.0-r0)
(40/48) Installing utmps-libs (0.1.3.1-r0)
(41/48) Installing linux-pam (1.7.1-r2)
(42/48) Installing shadow-libs (4.18.0-r0)
(43/48) Installing shadow-subids (4.18.0-r0)
(44/48) Installing containers-common (0.64.2-r0)
(45/48) Installing netavark (1.16.1-r0)
(46/48) Installing aardvark-dns (1.16.0-r0)
(47/48) Installing catatonit (0.2.1-r0)
(48/48) Installing podman-remote (5.7.0-r6)
Executing busybox-1.37.0-r30.trigger
Executing ca-certificates-20260413-r0.trigger
Executing glib-2.86.3-r0.trigger
OK: 130.6 MiB in 64 packages
Setting up Claude Code...

Checking installation status...
Installing Claude Code native build latest...bash: line 158: 38 Killed "$binary_path" install ${TARGET:+"$TARGET"}
The command '/bin/sh -c apk add --no-cache bash curl nodejs podman-remote && CLAUDE_CODE_VERSION="${CLAUDE_VERSION}" curl -fsSL https://claude.ai/install.sh | bash' returned a non-zero code: 137
make: *** [.claude.stamp] Error 137
```

I haven't been able to determine the fix yet.

Some system info:

```
$ go version
go version go1.26.3 darwin/arm64
```

```
$ docker version
Client: Docker Engine - Community
Version: 29.5.2
API version: 1.53 (downgraded from 1.54)
Go version: go1.26.3
Git commit: 79eb04c7d8
Built: Wed May 20 14:33:30 2026
OS/Arch: darwin/arm64
Context: colima

Server: Docker Engine - Community
Engine:
Version: 29.2.1
API version: 1.53 (minimum version 1.44)
Go version: go1.25.6
Git commit: 6bc6209
Built: Mon Feb 2 17:16:40 2026
OS/Arch: linux/arm64
Experimental: false
containerd:
Version: v2.2.1
GitCommit: dea7da592f5d1d2b7755e3a161be07f43fad8f75
runc:
Version: 1.3.4
GitCommit: v1.3.4-0-gd6d73eb8
docker-init:
Version: 0.19.0
GitCommit: de40ad0
```

```
uname -a
Darwin ....local 25.5.0 Darwin Kernel Version 25.5.0: Mon Apr 27 20:41:15 PDT 2026; root:xnu-12377.121.6~2/RELEASE_ARM64_T6041 arm64
```

Beitragsleitfaden

Beitragsleitfaden öffnen

Bewertung

Dieses Issue wurde noch nicht bewertet.

Neue Issues direkt in Ihr Postfach

Eine kurze Übersicht über anfängerfreundliche GitHub-Issues.