From 6a637389178e99f4ec3e5c71b2f03c002b2772ad Mon Sep 17 00:00:00 2001 From: SIGKILL64 Date: Thu, 22 Dec 2022 07:54:48 +0000 Subject: [PATCH] change smartdns-aarch64 to smartdns-x86_64 --- smartdns/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/smartdns/Dockerfile b/smartdns/Dockerfile index 8be573f..53c9d6f 100644 --- a/smartdns/Dockerfile +++ b/smartdns/Dockerfile @@ -6,7 +6,7 @@ ARG APK_MIRROR=dl-cdn.alpinelinux.org RUN sed -i "s/dl-cdn.alpinelinux.org/${APK_MIRROR}/g" /etc/apk/repositories && \ apk add --no-cache --no-progress curl && \ cd / && \ - wget --tries=3 -O smartdns $(curl -s https://api.github.com/repos/pymumu/smartdns/releases/latest | grep browser_download_url | egrep -o 'http.://.+/smartdns-aarch64' | head -n1) + wget --tries=3 -O smartdns $(curl -s https://api.github.com/repos/pymumu/smartdns/releases/latest | grep browser_download_url | egrep -o 'http.://.+/smartdns-x86_64' | head -n1) FROM alpine:${ALPINE_VERSION}