FROM python:3.9

RUN pip install --upgrade pip && pip install --no-cache-dir \
    "requests==2.28.0" \
    "fastapi>=0.68.0"

COPY . /app
WORKDIR /app

CMD ["python", "main.py"]