From f5eee658fa6691842436c65ed409ac9d3828e1a4 Mon Sep 17 00:00:00 2001 From: aptalca <541623+aptalca@users.noreply.github.com> Date: Thu, 9 May 2024 21:13:58 -0400 Subject: [PATCH] pull x265 tarball on aarch64 --- Dockerfile.aarch64 | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/Dockerfile.aarch64 b/Dockerfile.aarch64 index 0361ecb..239db48 100644 --- a/Dockerfile.aarch64 +++ b/Dockerfile.aarch64 @@ -438,10 +438,9 @@ RUN \ RUN \ echo "**** grabbing x265 ****" && \ mkdir -p /tmp/x265 && \ - git clone \ - --branch ${X265} \ - https://bitbucket.org/multicoreware/x265_git.git \ - /tmp/x265 + curl -Lf \ + https://bitbucket.org/multicoreware/x265_git/downloads/x265_${X265}.tar.gz | \ + tar -zx --strip-components=1 -C /tmp/x265 RUN \ echo "**** compiling x265 ****" && \ cd /tmp/x265/build/linux && \