Spaces:
Sleeping
Sleeping
File size: 849 Bytes
0573370 cd52fb2 e72b8ab cd52fb2 2508400 cd52fb2 e72b8ab 0573370 cd52fb2 0573370 e72b8ab 0573370 | 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 | FROM python:3.11
# Install Playwright + dependencies (as root)
RUN pip install --no-cache-dir playwright && \
playwright install --with-deps chromium
# --- System dependencies must be installed as root ---
RUN apt-get update && \
apt-get install -y --no-install-recommends \
tesseract-ocr \
tesseract-ocr-eng \
libtesseract-dev && \
apt-get clean && rm -rf /var/lib/apt/lists/*
# ------------------------------------------------------
# Create Hugging Face user
RUN useradd -m -u 1000 user
# Switch user AFTER system install
USER user
ENV PATH="/home/user/.local/bin:$PATH"
WORKDIR /app
COPY --chown=user ./requirements.txt requirements.txt
RUN pip install --no-cache-dir --upgrade -r requirements.txt
COPY --chown=user . .
ENV PORT=7860
CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]
|