Th3BossC's picture
modified docker file
3b3b7f6
raw
history blame contribute delete
309 Bytes
FROM python:3.12
RUN apt-get update && \
apt-get install -y \
tesseract-ocr \
libtesseract-dev \
libgl1
WORKDIR /app
COPY requirements.txt .
RUN pip install -r requirements.txt
COPY src/ .
EXPOSE 7860
CMD ["streamlit", "run", "main.py", "--server.port=7860", "--server.address=0.0.0.0"]