Spaces:
Build error
Build error
File size: 335 Bytes
300298d f64df90 300298d f64df90 acb6e83 f64df90 acb6e83 f64df90 acb6e83 ef86e77 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
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"] |