From 81120bf33355630d3294b67cfcd4f89a8ca41ed0 Mon Sep 17 00:00:00 2001 From: Evan Fiordeliso Date: Wed, 12 Jul 2023 20:23:06 -0400 Subject: [PATCH] Fix yt-dlp version in dockerfile --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 8e0b0fc..0dbe8e8 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,8 +4,8 @@ FROM alpine:${ALPINE_VERSION} WORKDIR /app -# hadolint ignore=DL3018 -RUN apk add --no-cache yt-dlp ffmpeg +ARG YTDLP_VERSION="2023.07.06-r0" +RUN apk add --no-cache yt-dlp==${YTDLP_VERSION} COPY ytdl-web ./