Spaces:
Running
Running
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"] |