fix: add Linux ARM64 support to install script and docs

This commit is contained in:
Nathan Flurry 2026-02-04 22:51:42 -08:00
parent 79a4c4ec16
commit 7ab3226204
2 changed files with 26 additions and 7 deletions

View file

@ -75,9 +75,21 @@ await client.createSession("my-session", {
To build a static binary for use in minimal containers:
```bash
docker build -f docker/release/linux-x86_64.Dockerfile -t sandbox-agent-build .
docker run --rm -v "$PWD/artifacts:/artifacts" sandbox-agent-build
```
<Tabs>
<Tab title="x86_64">
```bash
docker build -f docker/release/linux-x86_64.Dockerfile -t sandbox-agent-build .
docker run --rm -v "$PWD/artifacts:/artifacts" sandbox-agent-build
```
The binary will be at `./artifacts/sandbox-agent-x86_64-unknown-linux-musl`.
The binary will be at `./artifacts/sandbox-agent-x86_64-unknown-linux-musl`.
</Tab>
<Tab title="ARM64 (aarch64)">
```bash
docker build -f docker/release/linux-aarch64.Dockerfile -t sandbox-agent-build .
docker run --rm -v "$PWD/artifacts:/artifacts" sandbox-agent-build
```
The binary will be at `./artifacts/sandbox-agent-aarch64-unknown-linux-musl`.
</Tab>
</Tabs>