File size: 485 Bytes
4112422
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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"]