We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 38051cf commit 33da4aeCopy full SHA for 33da4ae
Dockerfile
@@ -13,12 +13,13 @@ RUN make build
13
RUN wget -O /usr/bin/yt-dlp https://github.com/yt-dlp/yt-dlp/releases/latest/download/yt-dlp && \
14
chmod a+rwx /usr/bin/yt-dlp
15
16
-# Alpine 3.21 will go EOL on 2026-11-01
17
-FROM alpine:3.21
+# Alpine 3.22 will go EOL on 2027-05-01
+FROM alpine:3.22
18
19
WORKDIR /app
20
21
-RUN apk --no-cache add ca-certificates python3 py3-pip ffmpeg tzdata libc6-compat
+# deno is required for yt-dlp (ref: https://github.com/yt-dlp/yt-dlp/issues/14404)
22
+RUN apk --no-cache add ca-certificates python3 py3-pip ffmpeg tzdata libc6-compat deno
23
24
RUN chmod 777 /usr/local/bin
25
COPY --from=builder /usr/bin/yt-dlp /usr/local/bin/youtube-dl
0 commit comments