feat: add deno runtime for yt-dlp YouTube JS extraction

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Jeff Emmett 2026-02-09 18:35:11 +00:00
parent 5c9b7c74e0
commit c5505417a5
1 changed files with 4 additions and 1 deletions

View File

@ -2,9 +2,12 @@ FROM python:3.12-slim
# Install system dependencies
RUN apt-get update && apt-get install -y --no-install-recommends \
ffmpeg \
ffmpeg curl unzip \
&& rm -rf /var/lib/apt/lists/*
# Install deno (required by yt-dlp for YouTube JS extraction)
RUN curl -fsSL https://deno.land/install.sh | DENO_INSTALL=/usr/local sh
WORKDIR /app
# Install Python dependencies