Spaces:
Build error
Build error
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"] |