Spaces:
Sleeping
Sleeping
File size: 514 Bytes
4810f6f 7bf8597 9bdce89 4810f6f 9bdce89 3ebf441 4810f6f 3ebf441 4810f6f 9bdce89 4810f6f 9bdce89 |
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 |
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"]
|