FROM python:3.11-slim-bookworm WORKDIR /app RUN apt-get update && apt-get install -y --no-install-recommends ffmpeg libolm-dev && rm -rf /var/lib/apt/lists/* COPY requirements.txt . RUN pip install --no-cache-dir -r requirements.txt # Install confluence-collab for section-based editing (CF-1812) COPY confluence-collab/ /tmp/confluence-collab/ RUN pip install --no-cache-dir /tmp/confluence-collab/ && rm -rf /tmp/confluence-collab/ COPY . .