tdsproject2 / Dockerfile
abdullahmak's picture
done
cd52fb2
raw
history blame contribute delete
849 Bytes
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"]