| |
| FROM python:3.9 |
|
|
| |
| RUN useradd -m -u 1000 user |
| ENV PATH="/home/user/.local/bin:$PATH" |
|
|
| |
| WORKDIR /app |
|
|
| |
| USER root |
| RUN apt-get update -y && \ |
| apt-get install -y tesseract-ocr && \ |
| apt-get clean && \ |
| rm -rf /var/lib/apt/lists/* |
|
|
| |
| RUN chown user:user /app |
|
|
| |
| RUN mkdir -p /app/models && chown user:user /app/models |
|
|
| |
| USER user |
|
|
| |
| COPY --chown=user ./requirements.txt requirements.txt |
| RUN pip install --no-cache-dir --upgrade -r requirements.txt |
|
|
| |
| COPY --chown=user . /app |
|
|
| |
| CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"] |