FROM python:3.10

WORKDIR ./work-dir

### Install python packages
COPY requirements.txt .
RUN pip3 install --upgrade pip && \
    pip3 install --no-cache-dir -r requirements.txt 




