EngHin-text-ex / dockerfile
Sensei13k's picture
Update dockerfile
300298d verified
raw
history blame contribute delete
335 Bytes
FROM python:3.10
# Install Tesseract OCR
RUN apt-get update && apt-get install -y tesseract-ocr libtesseract-dev
# Copy your app files
COPY . /app
WORKDIR /app
# Install Python dependencies
COPY requirements.txt /app/requirements.txt
RUN pip install --no-cache-dir -r requirements.txt
# Run your Gradio app
CMD ["python", "app.py"]