FROM python:3.9

COPY python-requirements.txt /requirements.txt
RUN pip install -r /requirements.txt

WORKDIR /test
ENTRYPOINT ["pytest"]