E2B Advanced Features
Preview Documentation
This section is in preview and not fully ready. The features and instructions may change in future releases.
MiroFlow provides advanced E2B (Execute to Build) sandbox capabilities for enhanced code execution environments with pre-installed packages and custom configurations.
Local E2B Sandbox Deployment
Recommended Setup
To achieve our best benchmark results, we recommend using a pre-defined sandbox template that includes the most commonly used Python and apt packages.
If you prefer not to use a sandbox template, you can disable it by commenting out the line template=DEFAULT_TEMPLATE_ID,
in libs/miroflow-tool/src/miroflow/tool/mcp_servers/python_server.py
(line 145).
Sandbox Setup Guide
Prerequisites
- npm installed locally
- Docker running locally
- E2B API key configured
Step 1: Install E2B CLI
Step 2: Download Pre-configured Dockerfile
Download our pre-configured Dockerfile from the repository:
Step 3: Build Template
Run the e2b template build
command to create your custom template:
# Set your E2B access token
E2B_ACCESS_TOKEN=${your-token}
# Build the template with docker build locally
e2b template build -c "/root/.jupyter/start-up.sh" -n "all_pip_apt_pkg" -d ./e2b.Dockerfile
# Verify template was built successfully
E2B_ACCESS_TOKEN=${your-token} e2b template list
Custom Templates
You can create your own custom sandbox template for specific use cases by following similar steps. For more information, refer to the E2B Docker documentation.
E2B Docker Configuration
This custom E2B Docker environment provides a sandboxed environment with pre-installed scientific computing libraries, data analysis tools, and dependencies commonly needed for AI agent tasks.
# You can use most Debian-based base images
FROM e2bdev/code-interpreter
# Update package list and install Python 3.10 and pip
RUN apt-get update && apt-get install -y \
portaudio19-dev \
&& rm -rf /var/lib/apt/lists/*
RUN python3 -m pip install --no-cache-dir --upgrade pip setuptools wheel
# Install dependencies and customize sandbox
RUN python3 -m pip install --no-cache-dir \
Flask \
IPython \
Pillow \
PyGithub \
PyMuPDF \
PyPDF2 \
arch \
arm-pyart \
arxiv \
ase \
astropy \
astroquery \
awscli \
beautifulsoup4 \
biopython \
boto3 \
brian2 \
cairosvg \
cgt \
chardet \
chess \
cinemagoer \
clifford \
contextily \
control \
cryptography \
cvxpy \
datasets \
descarteslabs \
duckduckgo-search \
edalize \
english_words \
ephem \
esp-docs \
flask \
folium \
geopandas \
geopy \
google-search-results \
googlesearch-python \
googletrans \
habanero \
helics \
hijri_converter \
imbalanced-learn \
inflect \
isbnlib \
kaggle \
lifelines \
lxml \
lxml_html_clean \
mapclassify \
markdown \
'matplotlib>=3.8' \
mendeleev \
metpy \
music21 \
networkx \
nipype \
numba \
'numpy>=2' \
opencv-python \
openpyxl \
'pandas>=2' \
pandas_datareader \
parsl \
pdf2image \
pdfminer \
pdfplumber \
periodictable \
plotly \
polars \
psycopg2-binary \
pulp \
pyXSteam \
pybel \
pycryptodome \
pydot \
pygplates \
pymatgen \
pymupdf \
pypdf2 \
pypinyin \
pyscf \
pytesseract \
python-docx \
pytube \
pywavelets \
rdflib \
reportlab \
requests \
requests-html \
scanpy \
scikit-image \
scikit-learn \
scipy \
scvelo \
seaborn \
selenium \
semanticscholar \
shap \
shapely \
siphon \
skyfield \
smbus2 \
snappy \
spglib \
sphinx \
splink \
statsmodels \
stockfish \
sympy \
tabulate \
torch \
torchvision \
transformers \
uncertainpy \
us \
virtualenv \
wbdata \
webdriver-manager \
wikipedia-api \
wolframalpha \
wordfreq \
yfinance \
yt-dlp \
docx2txt \
rdkit \
stockfish \
yfinance \
seaborn \
python-pptx \
pyaudio \
pyshp \
SpeechRecognition \
waybackpy
RUN apt-get update && \
apt-get install -y --no-install-recommends \
# โโ Basic build & Python โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
build-essential gfortran cmake pkg-config git curl wget ca-certificates \
# โโ scientific computing โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
libopenblas-dev liblapack-dev libatlas-base-dev \
libssl-dev libffi-dev zlib1g-dev \
# โโ image / OpenCV / Pillow โโโโโโโโโโโโโโโโโโโโโโโโโ
libgl1 libgl1-mesa-glx libglib2.0-0 libsm6 libxext6 libxrender1 \
libjpeg-dev libpng-dev libwebp-dev libfreetype6-dev libopenjp2-7 liblcms2-dev \
# โโ video / audio โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
ffmpeg libsndfile1 sox portaudio19-dev \
# โโ PDF / doc / OCR โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
poppler-utils pdfgrep ghostscript \
tesseract-ocr tesseract-ocr-deu \
libxml2-dev libxslt1-dev \
# โโ other tools โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
imagemagick unlambda stockfish \
unzip zip tar nano && \
apt-get clean && rm -rf /var/lib/apt/lists/*
Documentation Info
Last Updated: September 2025 ยท Doc Contributor: Team @ MiroMind AI