Spaces:
Sleeping
Sleeping
File size: 472 Bytes
1e9ae83 4e14b2e |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 |
FROM python:3.10-slim
# Install system dependencies
RUN apt-get update && apt-get install -y \
tesseract-ocr \
poppler-utils \
&& rm -rf /var/lib/apt/lists/*
# Set work directory
WORKDIR /app
# Copy requirements
COPY requirements.txt .
# Install python dependencies
RUN pip install --no-cache-dir -r requirements.txt
# Copy app code
COPY . .
# Run Streamlit app
CMD ["streamlit", "run", "main.py", "--server.port", "7860", "--server.address", "0.0.0.0"]
|