Commit 8740dbb
committed
fix(v0.4.x): repair Docker image build + finish rename in container files
Two issues caught while inspecting why the v0.4.0 Release Binaries
workflow had its Docker step fail:
1. OpenCode upstream changed release asset format. The Dockerfile
was curl'ing `opencode_linux_${ARCH}` (single binary, old
pattern) but OpenCode now publishes `opencode-linux-${ARCH}.tar.gz`
tarballs. The curl returned 404 and the docker build aborted.
Fix: pull the tarball, extract the `opencode` binary out of it.
2. Sub-agent A's v0.4.0 rename missed the Docker stack. Updated:
- Dockerfile: `mkdir -p /root/.ao` → `mkdir -p /root/.animus`
- docker-compose.yaml: service name `ao` → `animus`, image
`ghcr.io/launchapp-dev/ao:latest` → `ghcr.io/launchapp-dev/animus:latest`,
entrypoint `ao` → `animus`, volume `ao-data:/root/.ao` →
`animus-data:/root/.animus`.
These will land alongside the discovery-path fix (5651373) and the
narrative-doc AO sweep (b6d4c11) as the v0.4.1 patch surface.1 parent b6d4c11 commit 8740dbb
2 files changed
Lines changed: 12 additions & 10 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
40 | 40 | | |
41 | 41 | | |
42 | 42 | | |
43 | | - | |
| 43 | + | |
44 | 44 | | |
45 | | - | |
46 | | - | |
| 45 | + | |
| 46 | + | |
| 47 | + | |
| 48 | + | |
47 | 49 | | |
48 | | - | |
49 | | - | |
| 50 | + | |
| 51 | + | |
50 | 52 | | |
51 | 53 | | |
52 | 54 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
1 | 1 | | |
2 | | - | |
| 2 | + | |
3 | 3 | | |
4 | | - | |
5 | | - | |
| 4 | + | |
| 5 | + | |
6 | 6 | | |
7 | 7 | | |
8 | | - | |
| 8 | + | |
9 | 9 | | |
10 | 10 | | |
11 | 11 | | |
| |||
16 | 16 | | |
17 | 17 | | |
18 | 18 | | |
19 | | - | |
| 19 | + | |
0 commit comments