From: Charles Date: Tue, 23 Sep 2025 21:52:29 +0000 (+0100) Subject: Clone ffmpeg from github for classic image X-Git-Tag: 5.0-post-dev~78^2~2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=13ec59dde2a5cb8a45a27a934fab0ba8f59344f6;p=thirdparty%2Fshairport-sync.git Clone ffmpeg from github for classic image --- diff --git a/docker/classic/Dockerfile b/docker/classic/Dockerfile index 5b7f96e8..a71a41c0 100644 --- a/docker/classic/Dockerfile +++ b/docker/classic/Dockerfile @@ -10,8 +10,8 @@ RUN apk -U add build-base git nasm pkgconf RUN mkdir -p /ffmpeg_sources /ffmpeg_build WORKDIR /ffmpeg_sources ARG FFMPEG_BRANCH -RUN git clone --depth=1 -b "$FFMPEG_BRANCH" https://git.ffmpeg.org/ffmpeg.git -WORKDIR /ffmpeg_sources/ffmpeg +RUN git clone --depth=1 -b "$FFMPEG_BRANCH" https://github.com/FFmpeg/FFmpeg +WORKDIR /ffmpeg_sources/FFmpeg RUN ./configure \ --prefix="/ffmpeg_build" \ --extra-libs="-lpthread -lm" \