File size: 154 Bytes
c6acc08
 
 
 
 
 
1
2
3
4
5
6
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"]