From a7143287d969d86ce8598b1dc88402a9360b8aa3 Mon Sep 17 00:00:00 2001 From: mofeng-git Date: Wed, 11 Feb 2026 16:17:27 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E4=BF=AE=E5=A4=8D=E6=9E=84=E5=BB=BA?= =?UTF-8?q?=E9=94=99=E8=AF=AF=EF=BC=8C=E6=9E=84=E5=BB=BA=E6=97=B6=E5=AE=89?= =?UTF-8?q?=E8=A3=85=20rsync?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- build/cross/Dockerfile.arm64 | 1 + build/cross/Dockerfile.armv7 | 1 + build/cross/Dockerfile.x86_64 | 1 + 3 files changed, 3 insertions(+) diff --git a/build/cross/Dockerfile.arm64 b/build/cross/Dockerfile.arm64 index 9b6e849a..e67d71dc 100644 --- a/build/cross/Dockerfile.arm64 +++ b/build/cross/Dockerfile.arm64 @@ -37,6 +37,7 @@ RUN apt-get update && apt-get install -y --no-install-recommends \ wget \ xz-utils \ file \ + rsync \ gcc-aarch64-linux-gnu \ g++-aarch64-linux-gnu \ libc6-dev-arm64-cross \ diff --git a/build/cross/Dockerfile.armv7 b/build/cross/Dockerfile.armv7 index fc908f82..4e8f4617 100644 --- a/build/cross/Dockerfile.armv7 +++ b/build/cross/Dockerfile.armv7 @@ -37,6 +37,7 @@ RUN apt-get update && apt-get install -y --no-install-recommends \ wget \ xz-utils \ file \ + rsync \ gcc-arm-linux-gnueabihf \ g++-arm-linux-gnueabihf \ libc6-dev-armhf-cross \ diff --git a/build/cross/Dockerfile.x86_64 b/build/cross/Dockerfile.x86_64 index ebaf9a82..46b15ac9 100644 --- a/build/cross/Dockerfile.x86_64 +++ b/build/cross/Dockerfile.x86_64 @@ -34,6 +34,7 @@ RUN apt-get update && apt-get install -y --no-install-recommends \ llvm \ wget \ xz-utils \ + rsync \ # Autotools for libopus (requires autoreconf) autoconf \ automake \