r1 / Dockerfile
2ch's picture
Update Dockerfile
0abaee2 verified
raw
history blame contribute delete
190 Bytes
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"]