FROM python:3.9-slim

ENV PIP_EXTRA_INDEX_URL=https://pypi.numerously.com/simple/

COPY ./api_client ./api_client

RUN pip install ./api_client

COPY ./api_client/python/debug_validation/scheduling/requirements.txt .

RUN pip install -r requirements.txt

COPY ./api_client/python/debug_validation/scheduling/. .

CMD python test_scheduling.py