FROM python:3.12-alpine RUN pip install --no-cache-dir --upgrade cchardet==2.2.0a2 fastapi ftfy httpx[http2] uvicorn WORKDIR /code RUN chmod 777 /code COPY . . CMD ["python", "/code/app.py"]