Spaces:
Sleeping
Sleeping
File size: 322 Bytes
a8427bb 55c4146 a8427bb 55c4146 a8427bb 55c4146 a8427bb 8729ebe a8427bb |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
FFROM python:3.10-slim
RUN apt-get update && apt-get install -y \
tesseract-ocr \
libgl1-mesa-glx libsm6 libxext6 \
&& apt-get clean
WORKDIR /app
COPY requirements.txt .
RUN pip install -r requirements.txt
COPY app.py .
CMD ["streamlit", "run", "app.py", "--server.port=7860", "--server.enableCORS=false"]
|