FROM python:3.12-slim
LABEL org.opencontainers.image.source=https://github.com/sandeep-alluru/agentdelta
LABEL org.opencontainers.image.description="Semantic diff engine for AI agent behavior — find the exact decision fork between two runs"
LABEL org.opencontainers.image.licenses=MIT

RUN pip install --no-cache-dir "agentdelta[mcp]"

ENTRYPOINT ["agentdelta-mcp"]
