# Slim pytest container for the suite-level e2e harness.
FROM python:3.10-slim
WORKDIR /opt/tests
RUN pip install --no-cache-dir pytest requests pyyaml
ENTRYPOINT ["pytest", "-q", "/opt/tests/e2e/scenarios"]
