Spaces:
Configuration error
Configuration error
File size: 272 Bytes
48df644 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
FROM python:3.9
MAINTAINER pranavrao25
WORKDIR /app
COPY requirements.txt .
RUN apt-get update \
&& apt-get -y install tesseract-ocr
RUN pip install -r requirements.txt
COPY . .
EXPOSE 8501
CMD ["nohup", "streamlit","run","landing_page.py", "&"] |