FROM python:3.11-slim WORKDIR /app # Install system dependencies RUN apt-get update && \ apt-get install -y --no-install-recommends \ build-essential \ && rm -rf /var/lib/apt/lists/* # Copy requirements first for better caching COPY requirements.txt . RUN pip install --no-cache-dir -r requirements.txt # Create directories RUN mkdir -p input output # Copy the rest of the application COPY . . # Command to run the embedder CMD ["python", "embedder.py"]