From 14dd7c4e31e1186c7e11274abab726618de524ae Mon Sep 17 00:00:00 2001 From: DDSRem <73049927+DDSRem@users.noreply.github.com> Date: Fri, 27 Sep 2024 17:33:52 +0800 Subject: [PATCH] chore: use static compilation of aria2c --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index e733edf4..054d02f4 100644 --- a/Dockerfile +++ b/Dockerfile @@ -34,7 +34,6 @@ RUN apt-get update -y \ rsync \ ffmpeg \ nano \ - aria2 \ && \ if [ "$(uname -m)" = "x86_64" ]; \ then ln -s /usr/lib/x86_64-linux-musl/libc.so /lib/libc.musl-x86_64.so.1; \ @@ -42,6 +41,7 @@ RUN apt-get update -y \ then ln -s /usr/lib/aarch64-linux-musl/libc.so /lib/libc.musl-aarch64.so.1; \ fi \ && curl https://rclone.org/install.sh | bash \ + && curl --insecure -fsSL https://raw.githubusercontent.com/DDS-Derek/Aria2-Pro-Core/master/aria2-install.sh | bash \ && apt-get autoremove -y \ && apt-get clean -y \ && rm -rf \