FROM python:3.11-slim

WORKDIR /sdk

COPY sdk/python/ /sdk/

RUN touch README.md && pip install --no-cache-dir ".[dev]"

CMD ["pytest", "tests/", "-v", "--asyncio-mode=auto", "--tb=short"]
