FROM python:3.10

WORKDIR /tool

COPY requirements.txt /tool

RUN pip install -r requirements.txt -U