| FROM python:3.11 | |
| WORKDIR /app | |
| COPY . . | |
| RUN apt-get update && apt-get install -y tesseract-ocr | |
| RUN pip install --no-cache-dir -r requirements.txt | |
| RUN chmod +x start.sh | |
| EXPOSE 7860 | |
| CMD ["./start.sh"] |
| FROM python:3.11 | |
| WORKDIR /app | |
| COPY . . | |
| RUN apt-get update && apt-get install -y tesseract-ocr | |
| RUN pip install --no-cache-dir -r requirements.txt | |
| RUN chmod +x start.sh | |
| EXPOSE 7860 | |
| CMD ["./start.sh"] |