Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion ubuntu/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ RUN apt-get update \
python3 \
&& curl -fsSL https://deb.nodesource.com/setup_22.x | bash - \
&& apt-get install -y --no-install-recommends nodejs \
# Install GitHub CLI
# Install GitHub CLI \
&& curl -fsSL https://cli.github.com/packages/githubcli-archive-keyring.gpg \
-o /usr/share/keyrings/githubcli-archive-keyring.gpg \
&& echo "deb [arch=$(dpkg --print-architecture) signed-by=/usr/share/keyrings/githubcli-archive-keyring.gpg] https://cli.github.com/packages stable main" \
Expand All @@ -21,6 +21,9 @@ RUN apt-get update \
RUN npm install -g agent-browser \
&& npx playwright install-deps chromium

# Install Claude Code by default when available
RUN npm install -g @anthropic-ai/claude-code || true

COPY package.json index.js /app/
RUN cd /app && npm install --production

Expand Down
4 changes: 4 additions & 0 deletions ubuntu/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -104,3 +104,7 @@ Add as an MCP server in the orchestra UI:
| Headers | `{"x-api-key": "<API_KEY>"}` if auth is enabled, otherwise `{}` |

The `exec_command` tool will appear when fetching tools from the configured server.

## Claude Code

Claude Code is installed by default in the sandbox image when available.