From 2f154678a9aa7e4cd6bdc9a15d39220bbc247a54 Mon Sep 17 00:00:00 2001 From: nadoo <287492+nadoo@users.noreply.github.com> Date: Sat, 21 Dec 2024 23:36:52 +0800 Subject: [PATCH] docker: update binary folder --- .Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.Dockerfile b/.Dockerfile index 84d0912..3cc6d68 100644 --- a/.Dockerfile +++ b/.Dockerfile @@ -7,7 +7,7 @@ RUN apk add --no-cache ca-certificates ARG TARGETPLATFORM RUN case $TARGETPLATFORM in \ 'linux/386') \ - export FOLDER='default_linux_386'; \ + export FOLDER='default_linux_386_sse2'; \ ;; \ 'linux/amd64') \ export FOLDER='default_linux_amd64_v1'; \ @@ -19,10 +19,10 @@ RUN case $TARGETPLATFORM in \ export FOLDER='default_linux_arm_7'; \ ;; \ 'linux/arm64') \ - export FOLDER='default_linux_arm64'; \ + export FOLDER='default_linux_arm64_v8.0'; \ ;; \ 'linux/riscv64') \ - export FOLDER='default_linux_riscv64'; \ + export FOLDER='default_linux_riscv64_rva20u64'; \ ;; \ *) echo >&2 "error: unsupported architecture '$TARGETPLATFORM'"; exit 1 ;; \ esac \