# Base sandbox image: Python + the preinstalled libraries.
# The tether runtime/ helpers are NOT baked in -- they are mounted read-only at /runtime,
# so the image never drifts from the installed tether version.
FROM python:3.12-slim
ARG PREINSTALLED="pandas pyarrow numpy httpx"
RUN pip install --no-cache-dir ${PREINSTALLED}
