FROM python:3.12 WORKDIR /app RUN pip install anyio fastapi httpx uvicorn COPY . /app RUN chmod 777 /app && chmod 777 /app/* CMD ["python", "/app/app.py"]