FROM mcr.microsoft.com/devcontainers/python:1-3.12-bookworm

# tox is the only project-wide tool we want preinstalled; per-env deps
# are resolved by tox itself inside its venvs.
RUN pip install --no-cache-dir --upgrade pip \
 && pip install --no-cache-dir uv tox-uv

USER vscode
