scribe-ocr / Dockerfile
OCR-Chandra-2-V1's picture
Update Dockerfile
6bc1092 verified
Raw
History Blame Contribute Delete
221 Bytes
FROM python:3.13
WORKDIR /app
RUN pip install --no-cache-dir \
chandra-ocr[hf] \
fastapi \
uvicorn \
python-multipart \
Pillow
COPY . .
CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]