Add song fetch test

This commit is contained in:
Leonardo Segala 2025-08-01 19:16:20 +02:00
parent fa73c6de66
commit 8bb582148d
6 changed files with 76 additions and 9 deletions

View file

@ -2,6 +2,10 @@ FROM python:3.13.5-alpine
WORKDIR /app
RUN apk update && apk add git
RUN git clone --depth 1 'https://github.com/yt-dlp/yt-dlp.git' /yt-dlp
COPY requirements.txt ./
RUN pip install --no-cache-dir -r requirements.txt