FROM python:3.12 WORKDIR /code RUN pip install fastapi httpx pydantic uvicorn COPY . . CMD python /code/app.py