Skip to content

Latest commit

 

History

History
27 lines (17 loc) · 805 Bytes

File metadata and controls

27 lines (17 loc) · 805 Bytes

sandbox

An open-source sandbox container environment for agent execution.

This project is inspired by AIO Sandbox. We aim to provide a fully open-source alternative that the community can freely customize and extend.

Docker Images

We provide two build targets in a single Dockerfile:

  • full (default): desktop + VNC/noVNC + Chromium + Playwright
  • lite: only Python + Node.js (smaller image), no desktop/browser services

Published image tags:

  • :full and :lite (default branch only)
  • :full-sha-<short-sha> and :lite-sha-<short-sha>

Build locally (from repo root):

# full (default target)
docker build -f docker/Dockerfile -t sandbox:full docker

# lite
docker build -f docker/Dockerfile --target lite -t sandbox:lite docker