From 8579fb4cc1053487c15382cd09ad007518913c0b Mon Sep 17 00:00:00 2001 From: simon Date: Mon, 21 Feb 2022 21:37:49 +0700 Subject: [PATCH] fix ffmpeg link grep by using master --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 371134b..b5145d1 100644 --- a/Dockerfile +++ b/Dockerfile @@ -16,7 +16,7 @@ RUN apt-get clean && apt-get -y update && apt-get -y install --no-install-recomm RUN if [ "$TARGETPLATFORM" = "linux/amd64" ] ; then \ curl -s https://api.github.com/repos/yt-dlp/FFmpeg-Builds/releases/latest \ | grep browser_download_url \ - | grep linux64-gpl-4.4.tar.xz \ + | grep ".*master.*linux64.*tar.xz" \ | cut -d '"' -f 4 \ | xargs curl -L --output ffmpeg.tar.xz && \ tar -xf ffmpeg.tar.xz --strip-components=2 --no-anchored -C /usr/bin/ "ffmpeg" && \