diff --git a/Dockerfile b/Dockerfile index 0e9bc09..1a4ebef 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,8 +2,8 @@ FROM python:3.11-slim WORKDIR /app -# Install git for pip git+https dependencies -RUN apt-get update && apt-get install -y --no-install-recommends git && rm -rf /var/lib/apt/lists/* +# Install git and ffmpeg (for video transcoding) +RUN apt-get update && apt-get install -y --no-install-recommends git ffmpeg && rm -rf /var/lib/apt/lists/* # Install dependencies COPY requirements.txt .