From 56b92ca11988fc108669b97e6c7495ffc9faa566 Mon Sep 17 00:00:00 2001 From: kev Date: Thu, 11 Aug 2022 18:25:29 +0800 Subject: [PATCH] fix shadowsocks-rust --- shadowsocks/rust/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/shadowsocks/rust/Dockerfile b/shadowsocks/rust/Dockerfile index 6b68d68..4fd7f8b 100644 --- a/shadowsocks/rust/Dockerfile +++ b/shadowsocks/rust/Dockerfile @@ -6,12 +6,12 @@ FROM alpine:3 MAINTAINER EasyPi Software Foundation ARG SS_RUST_VERSION=v1.14.3 -ARG SS_RUST_FILE=shadowsocks-${SS_RUST_VERSION}.x86_64-unknown-linux-gnu.tar.xz +ARG SS_RUST_FILE=shadowsocks-${SS_RUST_VERSION}.x86_64-unknown-linux-musl.tar.xz ARG SS_RUST_URL=https://github.com/shadowsocks/shadowsocks-rust/releases/download/${SS_RUST_VERSION}/${SS_RUST_FILE} RUN set -ex \ && apk add --no-cache curl \ - && curl -sSL ${SS_RUST_URL} | tar xJ -C /usr/bin/ \ + && curl -sSL ${SS_RUST_URL} | tar xJ ssservice -C /usr/bin/ \ && apk del curl ENV SERVER_ADDR=0.0.0.0