diff --git a/Dockerfile b/Dockerfile index 09868ee..0431076 100644 --- a/Dockerfile +++ b/Dockerfile @@ -7,7 +7,10 @@ RUN npm run build FROM node:20.20.0-alpine WORKDIR /spooty -RUN apk add --no-cache ffmpeg redis python3 py3-pip curl yt-dlp \ +RUN apk add --no-cache ffmpeg redis python3 py3-pip curl \ + && curl -L https://github.com/yt-dlp/yt-dlp/releases/latest/download/yt-dlp -o /usr/local/bin/yt-dlp \ + && chmod +x /usr/local/bin/yt-dlp \ + && yt-dlp --version \ && addgroup -S spooty \ && adduser -S spooty -G spooty