FROM python:3.10-alpine

WORKDIR /code

COPY requirements.txt requirements.txt

RUN python3 -m pip install -r requirements.txt
