From 9f9a74000d95bd74834ca5d583b3f5bcd77a07d6 Mon Sep 17 00:00:00 2001 From: loverustfs <155562731+loverustfs@users.noreply.github.com> Date: Wed, 9 Jul 2025 21:04:10 +0800 Subject: [PATCH] Fix dockerfile link error (#138) * fix unzip error * fix url change error fix url change error --- Dockerfile | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 5ae310e86..ca06113e5 100644 --- a/Dockerfile +++ b/Dockerfile @@ -21,10 +21,9 @@ RUN apk add -U --no-cache \ unzip -RUN curl -Lo /tmp/rustfs.zip https://dl.rustfs.com/artifacts/rustfs/rustfs-release-x86_64-unknown-linux-musl.latest.zip && \ +RUN curl -Lo /tmp/rustfs.zip https://dl.rustfs.com/artifacts/rustfs/rustfs-x86_64-unknown-linux-musl.zip && \ unzip -o /tmp/rustfs.zip -d /tmp && \ - tar -xzf /tmp/rustfs-x86_64-unknown-linux-musl.tar.gz -C /tmp && \ - mv /tmp/rustfs-x86_64-unknown-linux-musl/bin/rustfs /rustfs && \ + mv /tmp/rustfs /rustfs && \ chmod +x /rustfs && \ rm -rf /tmp/*