mirror of
https://github.com/harivansh-afk/sandbox-agent.git
synced 2026-04-15 06:04:43 +00:00
Add example and documentation for deploying sandbox-agent inside Docker Sandbox microVMs for enhanced isolation on macOS/Windows. - Add examples/docker-sandbox/ with TypeScript example - Add docs/deploy/docker-sandbox.mdx with setup guide using custom templates - Update docs navigation to include Docker Sandbox
10 lines
364 B
Docker
10 lines
364 B
Docker
FROM --platform=linux/amd64 node:22-slim
|
|
|
|
RUN apt-get update && apt-get install -y curl git && rm -rf /var/lib/apt/lists/*
|
|
|
|
# Install sandbox-agent
|
|
RUN curl -fsSL https://releases.rivet.dev/sandbox-agent/latest/install.sh | sh
|
|
|
|
# Pre-install claude agent and add to PATH
|
|
RUN sandbox-agent install-agent claude
|
|
ENV PATH="/root/.local/share/sandbox-agent/bin:$PATH"
|