Spaces:
Sleeping
Sleeping
File size: 707 Bytes
08b9568 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 | FROM python:3.12-slim
ENV PYTHONDONTWRITEBYTECODE=1 \
PYTHONUNBUFFERED=1 \
OMP_THREAD_LIMIT=1 \
OCR_DPI=220 \
OCR_PSM=6 \
OCR_LANG=eng \
MAX_UPLOAD_MB=300 \
HOME=/home/user
RUN apt-get update \
&& apt-get install -y --no-install-recommends \
curl \
libglib2.0-0 \
libgomp1 \
tesseract-ocr \
tesseract-ocr-eng \
&& rm -rf /var/lib/apt/lists/* \
&& useradd -m -u 1000 user
WORKDIR /home/user/app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY --chown=user:user app.py .
USER user
EXPOSE 7860
CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860", "--timeout-keep-alive", "75"]
|