Spaces:
Sleeping
Sleeping
File size: 281 Bytes
82635c3 ce447e7 82635c3 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
FROM python:3.9-slim
RUN apt-get update && apt-get install -y tesseract-ocr libgl1-mesa-glx libglib2.0-0
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
ENV GRADIO_SERVER_PORT=7860
ENV GRADIO_SERVER_ADDRESS=0.0.0.0
CMD ["python", "app.py"] |