Skip to content

Commit 4da8533

Browse files
barckcodeclaude
andcommitted
fix: install chromium via apt for arm64 compatibility in browser images
agent-browser install fails on linux/arm64 because no prebuilt Chromium binary is available. Install chromium from the system package manager instead, which supports both amd64 and arm64. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 88b9d9e commit 4da8533

2 files changed

Lines changed: 8 additions & 4 deletions

File tree

claude-code/browser/Dockerfile

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
FROM ghcr.io/helmcode/agent_crew_agent:0.3.7
22

3-
RUN npm install -g agent-browser \
4-
&& agent-browser install
3+
RUN apt-get update && apt-get install -y --no-install-recommends \
4+
chromium \
5+
&& rm -rf /var/lib/apt/lists/* \
6+
&& npm install -g agent-browser

open-code/browser/Dockerfile

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
FROM ghcr.io/helmcode/agent_crew_opencode_agent:0.3.7
22

3-
RUN npm install -g agent-browser \
4-
&& agent-browser install
3+
RUN apt-get update && apt-get install -y --no-install-recommends \
4+
chromium \
5+
&& rm -rf /var/lib/apt/lists/* \
6+
&& npm install -g agent-browser

0 commit comments

Comments
 (0)