File size: 876 Bytes
f9d2d7a 2512e98 3b41497 |
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 27 28 29 30 31 32 33 34 35 |
# Install Tesseract and language packs
RUN apt-get update && apt-get install -y \
tesseract-ocr \
tesseract-ocr-eng \
tesseract-ocr-urd \
libgl1 \
&& rm -rf /var/lib/apt/lists/*
# Use an official Python runtime as the base image
FROM python:3.10-slim
# Install system dependencies for Tesseract and OpenCV
RUN apt-get update && apt-get install -y \
tesseract-ocr \
tesseract-ocr-eng \
tesseract-ocr-urd \
libgl1 \
&& rm -rf /var/lib/apt/lists/*
# Set the Tesseract data path
ENV TESSDATA_PREFIX=/usr/share/tesseract-ocr/4.00/tessdata
# Install Python dependencies
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
# Copy the application code
COPY . .
# Expose the port for Streamlit
EXPOSE 8501
# Run the Streamlit app
CMD ["streamlit", "run", "app.py", "--server.port=8501", "--server.address=0.0.0.0"]
|