Right after jammin create. I guess a platform argument is needed on macos?
❯❯❯ jammin build
┌ 🔨 Building project
│
◇ ✅ Configuration loaded
│
● --------------------------------
│
◓ Building service 'example'❌ Error: Error: Build failed for service 'example' with exit code 125
Output: Unable to find image 'ghcr.io/jambrains/service-sdk:latest@sha256:1cfc41c23f5c348aaee5f5c70aaa24f10c26baf903de4b4f6774e2032820ba87' locally
ghcr.io/jambrains/service-sdk@sha256:1cfc41c23f5c348aaee5f5c70aaa24f10c26baf903de4b4f6774e2032820ba87: Pulling from jambrains/service-sdk
docker: no matching manifest for linux/arm64/v8 in the manifest list entries.
See 'docker run --help'.
■ Canceled
A workaround is to pull the image manually with correct platform, but that should not really be required:
$ docker pull --platform=linux/amd64 ghcr.io/jambrains/service-sdk:latest@sha256:1cfc41c23f5c348aaee5f5c70aaa24f10c26baf903de4b4f6774e2032820ba87
$ jammin build
Right after
jammin create. I guess a platform argument is needed on macos?A workaround is to pull the image manually with correct platform, but that should not really be required: