From 9316486afb73d4e671de0e03bcd81cae6e2bbeff Mon Sep 17 00:00:00 2001 From: thelamer Date: Tue, 6 Aug 2024 15:36:46 -0400 Subject: [PATCH] use correct version of proot-apps --- Dockerfile.aarch64 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile.aarch64 b/Dockerfile.aarch64 index 2f0d3c2..e4a4153 100644 --- a/Dockerfile.aarch64 +++ b/Dockerfile.aarch64 @@ -132,7 +132,7 @@ RUN \ mkdir /proot-apps/ && \ PAPPS_RELEASE=$(curl -sX GET "https://api.github.com/repos/linuxserver/proot-apps/releases/latest" \ | awk '/tag_name/{print $4;exit}' FS='[""]') && \ - curl -L https://github.com/linuxserver/proot-apps/releases/download/${PAPPS_RELEASE}/proot-apps-x86_64.tar.gz \ + curl -L https://github.com/linuxserver/proot-apps/releases/download/${PAPPS_RELEASE}/proot-apps-aarch64.tar.gz \ | tar -xzf - -C /proot-apps/ && \ echo "${PAPPS_RELEASE}" > /proot-apps/pversion && \ echo "**** configure locale ****" && \