Extract_data / Dockerfile
Sharad9084's picture
Create Dockerfile
bb60cf3 verified
Raw
History Blame Contribute Delete
246 Bytes
FROM python:3.10
WORKDIR /app
COPY . .
RUN pip install --no-cache-dir -r requirements.txt
RUN apt-get update && apt-get install -y tesseract-ocr
EXPOSE 7860
CMD ["streamlit", "run", "app.py", "--server.port=7860", "--server.address=0.0.0.0"]