diff --git a/Dockerfile b/Dockerfile index 72902d8..4d35609 100644 --- a/Dockerfile +++ b/Dockerfile @@ -13,7 +13,8 @@ WORKDIR /app # Python deps COPY requirements.txt . -RUN pip install --no-cache-dir -r requirements.txt +RUN pip install --no-cache-dir -r requirements.txt && \ + pip install --no-cache-dir --upgrade --pre "yt-dlp[default]" # App code COPY app/ ./app/ diff --git a/requirements.txt b/requirements.txt index abcf937..99bd29b 100644 --- a/requirements.txt +++ b/requirements.txt @@ -5,4 +5,4 @@ pydantic==2.9.2 faster-whisper==1.0.3 opencv-python-headless==4.10.0.84 numpy==1.26.4 -yt-dlp==2024.10.7 +yt-dlp>=2025.10.0