mirror of
https://github.com/harivansh-afk/sandbox-agent.git
synced 2026-04-15 22:03:48 +00:00
11 lines
320 B
Docker
11 lines
320 B
Docker
FROM cloudflare/sandbox:0.7.0
|
|
|
|
# Install sandbox-agent
|
|
RUN curl -fsSL https://releases.rivet.dev/sandbox-agent/0.3.x/install.sh | sh
|
|
|
|
# Pre-install agents
|
|
RUN sandbox-agent install-agent claude && \
|
|
sandbox-agent install-agent codex
|
|
|
|
# Expose port for local dev (wrangler dev requires EXPOSE directives)
|
|
EXPOSE 8000
|