feat: support magnet/torrent download via aria2c
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
mini
2026-03-17 20:29:18 +08:00
parent 001e6b5239
commit 7d71ba2986
2 changed files with 109 additions and 1 deletions

View File

@@ -2,7 +2,7 @@ FROM python:3.12-slim
WORKDIR /app
RUN apt-get update && apt-get install -y --no-install-recommends ffmpeg && rm -rf /var/lib/apt/lists/*
RUN apt-get update && apt-get install -y --no-install-recommends ffmpeg aria2 && rm -rf /var/lib/apt/lists/*
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt && pip install --no-cache-dir -U yt-dlp