mineru2 / Dockerfile.runpod.simple
marcosremar2's picture
Add RunPod serverless configuration with GitHub integration
4112422
raw
history blame contribute delete
485 Bytes
FROM python:3.10-slim
# Install basic dependencies
RUN apt-get update && apt-get install -y \
wget \
git \
&& rm -rf /var/lib/apt/lists/*
WORKDIR /app
# Copy and install requirements
COPY requirements.runpod.txt .
RUN pip install --no-cache-dir --upgrade pip && \
pip install --no-cache-dir runpod PyMuPDF
# Copy handler (simplified version)
COPY runpod_handler_simple.py runpod_handler.py
# RunPod serverless expects this
CMD ["python", "-u", "runpod_handler.py"]