Skip to content

@cloudflare/[email protected]

Choose a tag to compare

@github-actions github-actions released this 28 Nov 11:32
· 17 commits to main since this release

Minor Changes

  • #259 0a2cb93 Thanks @ghostwriternr! - Add lean and Python image variants to reduce Docker image size

    BREAKING CHANGE for Python users: The default image no longer includes Python.

    • cloudflare/sandbox:<version> - lean image without Python (~600-800MB)
    • cloudflare/sandbox:<version>-python - full image with Python + data science packages (~1.3GB)

    Migration: If using CodeInterpreter.runCode() with Python, update your Dockerfile:

    # Before
    FROM cloudflare/sandbox:0.6.0
    
    # After
    FROM cloudflare/sandbox:0.6.0-python

    Without this change, Python execution will fail with PYTHON_NOT_AVAILABLE error.