File size: 200 Bytes
77e3d8b
 
 
 
 
 
 
1
2
3
4
5
6
7
FROM python:3.12
WORKDIR /code
RUN chmod 777 /code
RUN pip install anyio uvicorn fastapi httpx python-multipart pillow
RUN mkdir -p /.cache && chmod 777 /.cache
COPY . .
CMD ["python", "/code/app.py"]