pdf-toolbox / Dockerfile
codemaker2015's picture
first commit
4e14b2e
raw
history blame contribute delete
472 Bytes
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"]