File size: 190 Bytes
0d049b7
0abaee2
0d049b7
 
 
 
1
2
3
4
5
6
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"]