my_multi_modal_app / Dockerfile
boldhasnain's picture
Upload 11 files
48df644 verified
raw
history blame contribute delete
272 Bytes
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", "&"]