r1 / Dockerfile
2ch's picture
Update Dockerfile
d6bc5dc verified
raw
history blame
181 Bytes
FROM python:3.12-alpine
RUN pip install --no-cache-dir --upgrade cchardet fastapi ftfy httpx[http2] uvicorn
WORKDIR /code
RUN chmod 777 /code
COPY . .
CMD ["python", "/code/app.py"]