Moncey10's picture
changes
ac7b563
raw
history blame contribute delete
463 Bytes
FROM python:3.10-slim
# System deps (Tesseract + basic libs for PIL)
RUN apt-get update && apt-get install -y \
tesseract-ocr \
libtesseract-dev \
libleptonica-dev \
poppler-utils \
&& rm -rf /var/lib/apt/lists/*
WORKDIR /app
COPY requirements.txt /app/requirements.txt
RUN pip install --no-cache-dir -r /app/requirements.txt
COPY . /app
# HF Spaces uses 7860
EXPOSE 7860
CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]