From 8cb77e6d120572bde42a9e141a589ecfa2b1b57a Mon Sep 17 00:00:00 2001 From: sam#gemmi-win10 Date: Mon, 23 Oct 2023 21:30:29 +0800 Subject: [PATCH] fix ARMv7 --- flux/src/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/flux/src/Dockerfile b/flux/src/Dockerfile index 54dd4de..a053705 100644 --- a/flux/src/Dockerfile +++ b/flux/src/Dockerfile @@ -91,8 +91,8 @@ RUN echo a.1; \ case ${TARGETPLATFORM} in \ "linux/amd64") arch=64-bit ;; \ "linux/arm64") arch=ARM64 ;; \ - "linux/arm/v7") arch=ARM64v7 ;; \ - "linux/arm/v6") arch=ARM64v6 ;; \ + "linux/arm/v7") arch=ARMv7 ;; \ + "linux/arm/v6") arch=ARMv6 ;; \ "linux/386") arch=NONE_i386 ;; \ esac; \ cd /tmp; curl -fSL -O https://ghproxy.com/https://github.com/ochinchina/supervisord/releases/download/v0.7.3/supervisord_0.7.3_Linux_$arch.tar.gz; \