ARG DEBIAN_VERSION=bookworm-slim FROM debian:${DEBIAN_VERSION} AS base # Install system dependencies including ffmpeg for video metadata RUN apt-get update && apt-get install -y --no-install-recommends \ python3 \ python3-pip \ python3-dev \ curl \ ca-certificates \ ffmpeg \ && rm -rf /var/lib/apt/lists/* WORKDIR /app # Install Python dependencies RUN pip install --no-cache-dir \ curl-cffi \ beautifulsoup4 \ pillow \ imagehash \ --break-system-packages