Codegen provides a public Docker repository hosting our sandbox image, making it easy for developers to access and use the same environment that powers Codegen agents.
The Codegen sandbox image is publicly available on Docker Hub:Repository URL:https://hub.docker.com/r/caroljung/codegen-sandboxThis repository contains the same Docker image that Codegen agents use in their sandbox environments, providing you with:
A comprehensive development environment
Pre-installed tools and dependencies
Consistent runtime environment across different platforms
You can pull and run the Codegen sandbox image locally using standard Docker commands:
Copy
Ask AI
# Pull the latest imagedocker pull caroljung/codegen-sandbox:latest# Run an interactive containerdocker run -it caroljung/codegen-sandbox:latest /bin/bash