HelpDev / Dockerfile
Dewasheesh's picture
Update Dockerfile
7bf8597 verified
raw
history blame contribute delete
514 Bytes
FROM python:3.13.0
USER root
RUN apt-get update && apt-get install -y \
tesseract-ocr \
libtesseract-dev \
libleptonica-dev \
poppler-utils \
&& rm -rf /var/lib/apt/lists/*
RUN useradd -m -u 1000 user
USER user
ENV PATH="/home/user/.local/bin:$PATH"
WORKDIR /app
COPY --chown=user ./requirements.txt requirements.txt
COPY --chown=user . /app
RUN pip install --no-cache-dir --upgrade -r requirements.txt
EXPOSE 7860
CMD ["uvicorn", "app.main:app", "--host", "0.0.0.0", "--port", "7860"]