FROM python:3.11
COPY . /app
RUN pip install --no-cache-dir --upgrade -r /app/requirements.txt
WORKDIR /app