FROM python:3.10

WORKDIR /tool

COPY requirements.txt /tool

RUN pip install --trusted-host pypi.python.org -r requirements.txt
