diff --git a/Dockerfile b/Dockerfile index 07b7ab5..0aa5334 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,350 +1,136 @@ -FROM alpine:3.15 as build - -ENV GO_1_16="1.16.14" -ENV GO_1_17="1.17.7" -ENV GO_1_18="1.18rc1" - +FROM alpine:3.16.0 AS ss-libev ENV SS_LIBEV="3.3.5" -ENV SS_RUST="1.12.5" -ENV SIMPLE_TLS="v0.6.1" -ENV GOST_PLUGIN="v1.6.3" +ENV SS_LIBEV_LEGACY="2.6.3" +RUN \ + # Source code downloads and dependent installations + apk add asciidoc build-base c-ares-dev libev-dev libsodium-dev linux-headers mbedtls-dev pcre-dev udns-dev xmlto zlib-dev && \ + wget https://github.com/shadowsocks/shadowsocks-libev/releases/download/v$SS_LIBEV/shadowsocks-libev-$SS_LIBEV.tar.gz && \ + wget https://github.com/shadowsocks/shadowsocks-libev/releases/download/v$SS_LIBEV_LEGACY/shadowsocks-libev-$SS_LIBEV_LEGACY.tar.gz && \ + wget https://www.openssl.org/source/old/1.0.2/openssl-1.0.2u.tar.gz && \ + ls ./*.tar.gz | xargs -n1 tar xf && \ + mkdir -p /tmp/release/ && \ + \ + # Compile shadowsocks-libev (latest version) + cd ./shadowsocks-libev-$SS_LIBEV/ && \ + ./configure --prefix=/usr && make && make install && \ + mv /usr/bin/ss-local /tmp/release/ss-libev-local && \ + mv /usr/bin/ss-server /tmp/release/ss-libev-server && \ + \ + # Compile and install openssl (version 1.0.2u) + cd ../openssl-1.0.2u/ && \ + ./config --shared --prefix=/usr && make && make install && \ + cp /usr/lib/libcrypto.so.1.0.0 /tmp/release/ && \ + \ + # Compile shadowsocks-libev (legacy version) + cd ../shadowsocks-libev-$SS_LIBEV_LEGACY/ && \ + sed -i '/ss-nat/d' `grep "ss-nat" -rl src/*` && \ + sed -i 's/^const protocol_t/extern const protocol_t/g' `grep "^const protocol" -rl src/*.h` && \ + ./configure --prefix=/usr && make && make install && \ + mv /usr/bin/ss-local /tmp/release/ss-libev-legacy-local && \ + mv /usr/bin/ss-server /tmp/release/ss-libev-legacy-server -ENV GOST_VERSION="v2.11.1" -ENV XRAY_VERSION="v1.5.3" -ENV V2FLY_VERSION="v4.44.0" -ENV BROOK_VERSION="v20220401" -ENV TROJAN_VERSION="v1.16.0" -ENV TROJAN_GO_VERSION="v0.10.6" -ENV HYSTERIA_VERSION="v1.0.1" -ENV DNSPROXY_VERSION="v0.41.1" +FROM rust:1.62.0-alpine3.16 AS ss-rust +ENV SS_RUST="v1.15.0-alpha.5" +RUN \ + apk add git build-base && \ + mkdir -p /tmp/release/ && \ + git clone https://github.com/shadowsocks/shadowsocks-rust.git && \ + cd ./shadowsocks-rust/ && git checkout $SS_RUST && \ + cargo build --release --features "stream-cipher aead-cipher-extra aead-cipher-2022 aead-cipher-2022-extra" && \ + mv ./target/release/sslocal /tmp/release/ss-rust-local && \ + mv ./target/release/ssserver /tmp/release/ss-rust-server +FROM python:3.10.5-alpine3.16 AS ss-python +ENV SS_PYTHON_LEGACY="2.6.2" RUN \ -apk add asciidoc autoconf automake bash boost-dev build-base curl c-ares-dev cmake \ - git glib-dev go libev-dev libsodium-dev libtool linux-headers make mbedtls-dev \ - openssl-dev pcre-dev python3 python3-dev py3-pip udns-dev xmlto zlib-dev && \ -\ -# Get source code of Shadowsocks (python/libev/rust) -cd /tmp/ && mkdir ./release/ && \ -git clone https://github.com/dnomd343/shadowsocksr.git && \ -git clone https://github.com/shadowsocks/shadowsocks.git && \ -git clone https://github.com/dnomd343/shadowsocks-bootstrap.git && \ -wget https://github.com/shadowsocks/shadowsocks/archive/refs/tags/2.6.2.tar.gz && \ -wget https://github.com/shadowsocks/shadowsocks-libev/releases/download/v$SS_LIBEV/shadowsocks-libev-$SS_LIBEV.tar.gz && \ -wget https://github.com/shadowsocks/shadowsocks-libev/releases/download/v2.6.3/shadowsocks-libev-2.6.3.tar.gz && \ -wget https://github.com/shadowsocks/shadowsocks-rust/archive/refs/tags/v$SS_RUST.tar.gz && \ -tar xf 2.6.2.tar.gz && \ -tar xf shadowsocks-libev-$SS_LIBEV.tar.gz && \ -tar xf shadowsocks-libev-2.6.3.tar.gz && \ -tar xf v$SS_RUST.tar.gz && \ -\ -# Get source code of SIP003 plugins -git clone https://github.com/shadowsocks/simple-obfs.git && \ -git clone https://github.com/IrineSistiana/simple-tls.git && \ -git clone https://github.com/shadowsocks/v2ray-plugin.git && \ -git clone https://github.com/teddysun/xray-plugin.git && \ -git clone https://github.com/dnomd343/kcptun.git && \ -git clone https://github.com/maskedeken/gost-plugin.git && \ -git clone https://github.com/cbeuw/Cloak.git && \ -git clone https://github.com/dnomd343/GoQuiet.git && \ -git clone https://github.com/IrineSistiana/mos-tls-tunnel.git && \ -git clone https://github.com/dnomd343/rabbit-plugin.git && \ -git clone https://github.com/ihciah/rabbit-tcp.git && \ -git clone https://github.com/shadowsocks/qtun.git && \ -git clone https://github.com/Qv2ray/gun.git && \ -\ -# Get source code -git clone https://github.com/ginuerzh/gost.git && \ -git clone https://github.com/XTLS/Xray-core.git && \ -git clone https://github.com/v2fly/v2ray-core.git && \ -git clone https://github.com/txthinking/brook.git && \ -git clone https://github.com/trojan-gfw/trojan.git && \ -git clone https://github.com/HyNetwork/hysteria.git && \ -git clone https://github.com/p4gefau1t/trojan-go.git && \ -git clone https://github.com/AdguardTeam/dnsproxy.git && \ -git clone https://github.com/go-gost/gost.git ./gost-v3 && \ -\ -# Install rust environment (nightly version) -sh -c "$(curl -sL https://sh.rustup.rs)" @ -y --no-modify-path --default-toolchain nightly && \ -\ -# Install Go 1.16 environment -wget https://dl.google.com/go/go$GO_1_16.src.tar.gz -P /tmp/ && \ -tar -C /usr/local/ -xf /tmp/go$GO_1_16.src.tar.gz && \ -mv /usr/local/go/ /usr/local/go-$GO_1_16/ && \ -cd /usr/local/go-$GO_1_16/src/ && ./make.bash && \ -\ -# Install Go 1.17 environment -wget https://dl.google.com/go/go$GO_1_17.src.tar.gz -P /tmp/ && \ -tar -C /usr/local/ -xf /tmp/go$GO_1_17.src.tar.gz && \ -mv /usr/local/go/ /usr/local/go-$GO_1_17/ && \ -cd /usr/local/go-$GO_1_17/src/ && ./make.bash && \ -\ -# Install Go 1.18 environment -wget https://dl.google.com/go/go$GO_1_18.src.tar.gz -P /tmp/ && \ -tar -C /usr/local/ -xf /tmp/go$GO_1_18.src.tar.gz && \ -mv /usr/local/go/ /usr/local/go-$GO_1_18/ && \ -cd /usr/local/go-$GO_1_18/src/ && ./make.bash && \ -\ -# Switch to Golang 1.18 -apk del go && \ -export PATH=$PATH:/usr/local/go-$GO_1_18/bin && \ -\ -# Install and package numpy / salsa20 / flask / IPy / redis / pysocks / requests -pip install numpy salsa20 flask IPy redis pysocks && \ -mkdir /tmp/packages/ && cd /tmp/packages/ && \ -PACKAGE_DIR=/usr/lib/`ls /usr/lib/ | grep ^python`/site-packages && \ -cp -r $PACKAGE_DIR/*certifi* ./ && \ -cp -r $PACKAGE_DIR/*charset* ./ && \ -cp -r $PACKAGE_DIR/*click* ./ && \ -cp -r $PACKAGE_DIR/*deprecated* ./ && \ -cp -r $PACKAGE_DIR/*flask* ./ && \ -cp -r $PACKAGE_DIR/*idna* ./ && \ -cp -r $PACKAGE_DIR/*IPy* ./ && \ -cp -r $PACKAGE_DIR/*itsdangerous* ./ && \ -cp -r $PACKAGE_DIR/*jinja2* ./ && \ -cp -r $PACKAGE_DIR/*markupsafe* ./ && \ -cp -r $PACKAGE_DIR/*numpy* ./ && \ -cp -r $PACKAGE_DIR/*packaging* ./ && \ -cp -r $PACKAGE_DIR/*redis* ./ && \ -cp -r $PACKAGE_DIR/*requests* ./ && \ -cp -r $PACKAGE_DIR/*salsa20* ./ && \ -cp -r $PACKAGE_DIR/*socks* ./ && \ -cp -r $PACKAGE_DIR/*urllib3* ./ && \ -cp -r $PACKAGE_DIR/*werkzeug* ./ && \ -cp -r $PACKAGE_DIR/*wrapt* ./ && \ -rm -rf `ls ./ | grep '\-info'` && \ -rm -rf `find ./ -name '__pycache__'` && \ -strip `find ./ -name '*.so'` && \ -cd ../ && tar czf packages.tar.gz ./packages/ && \ -mv packages.tar.gz ./release/ && \ -\ -# Package shadowsocksr -cd /tmp/shadowsocksr/ && \ -sed -i "s/find_library(p)/'libcrypto.so.1.0.0'/g" ./shadowsocks/crypto/ctypes_openssl.py && \ -sed -i "/for path in paths:/a\ if (path.startswith('libcrypto.so')):" ./shadowsocks/crypto/util.py && \ -sed -i "/startswith/a\ path = 'libcrypto.so.1.0.0'" ./shadowsocks/crypto/util.py && \ -python3 setup.py build && cd ./build/ && mv ./lib/ ./ssr-python/ && \ -mv ./ssr-python/shadowsocks/local.py ./ssr-python/shadowsocks/server.py ./ssr-python/ && \ -chmod +x ./ssr-python/local.py ./ssr-python/server.py && \ -BZIP2=-9 tar cjf /tmp/release/ssr-python.tar.bz2 ./ssr-python/ && \ -\ -# Package shadowsocks-python -cd /tmp/shadowsocks/ && git checkout master && \ -sed -i 's/if addr is/if addr ==/g' shadowsocks/common.py && \ -sed -i 's/and ip is not/and ip !=/g' shadowsocks/common.py && \ -sed -i 's/if len(block) is/if len(block) ==/g' shadowsocks/common.py && \ -python3 setup.py build && cd ./build/ && mv ./lib/ ./ss-python/ && \ -mv ./ss-python/shadowsocks/local.py ./ss-python/shadowsocks/server.py ./ss-python/ && \ -chmod +x ./ss-python/local.py ./ss-python/server.py && \ -BZIP2=-9 tar cjf /tmp/release/ss-python.tar.bz2 ./ss-python/ && \ -\ -# Package shadowsocks-python-2.6.2 -cd /tmp/shadowsocks-2.6.2/ && \ -sed -i "s/find_library(p)/'libcrypto.so.1.0.0'/g" ./shadowsocks/crypto/ctypes_openssl.py && \ -python3 setup.py build && cd ./build/ && mv ./lib/ ./ss-python-legacy/ && \ -mv ./ss-python-legacy/shadowsocks/local.py ./ss-python-legacy/shadowsocks/server.py ./ss-python-legacy/ && \ -chmod +x ./ss-python-legacy/local.py ./ss-python-legacy/server.py && \ -BZIP2=-9 tar cjf /tmp/release/ss-python-legacy.tar.bz2 ./ss-python-legacy/ && \ -\ -# Compile shadowsocks-bootstrap -cd /tmp/shadowsocks-bootstrap/ && mkdir ./build/ && \ -cd ./build/ && cmake -DCMAKE_BUILD_TYPE=Release .. && make && \ -mv ../bin/* /tmp/release/ && \ -\ -# Compile trojan -cd /tmp/trojan && git checkout $TROJAN_VERSION && \ -mkdir ./build/ && cd ./build/ && \ -cmake .. -DENABLE_MYSQL=OFF -DSYSTEMD_SERVICE=OFF && make && \ -mv ./trojan /tmp/release/ && \ -\ -# Compile shadowsocks-libev (latest version) -cd /tmp/shadowsocks-libev-$SS_LIBEV/ && \ -./configure --prefix=/usr && make && make install && \ -mv /usr/bin/ss-local /tmp/release/ss-libev-local && \ -mv /usr/bin/ss-server /tmp/release/ss-libev-server && \ -\ -# Compile and install openssl (version 1.0.2u) -wget https://www.openssl.org/source/old/1.0.2/openssl-1.0.2u.tar.gz -P /tmp && \ -cd /tmp/ && tar xf openssl-1.0.2u.tar.gz && cd ./openssl-1.0.2u/ && \ -./config --shared --prefix=/usr && make && make install && \ -cp /usr/lib/libcrypto.so.1.0.0 /tmp/release/ && \ -\ -# Compile shadowsocks-libev-2.6.3 -cd /tmp/shadowsocks-libev-2.6.3/ && \ -sed -i '/ss-nat/d' `grep "ss-nat" -rl src/*` && \ -sed -i 's/^const protocol_t/extern const protocol_t/g' `grep "^const protocol" -rl src/*.h` && \ -./configure --prefix=/usr && make && make install && \ -mv /usr/bin/ss-local /tmp/release/ss-libev-legacy-local && \ -mv /usr/bin/ss-server /tmp/release/ss-libev-legacy-server && \ -\ -# Compile shadowsocks-rust -cd /tmp/shadowsocks-rust-$SS_RUST/ && \ -/root/.cargo/bin/cargo build --release && \ -mv ./target/release/sslocal /tmp/release/ss-rust-local && \ -mv ./target/release/ssserver /tmp/release/ss-rust-server && \ -\ -# Compile Gost-v3 -cd /tmp/gost-v3/ && \ -env CGO_ENABLED=0 go build -trimpath -ldflags "-s -w" ./cmd/gost && \ -mv ./gost /tmp/release/gost-v3 && \ -\ -# Switch to Go 1.17 -export PATH=/usr/local/go-$GO_1_17/bin:$PATH && \ -\ -# Compile simple-obfs -cd /tmp/simple-obfs/ && \ -git submodule update --init --recursive && \ -./autogen.sh && ./configure && make && make install && \ -cp /usr/local/bin/obfs-local /usr/local/bin/obfs-server /tmp/release/ && \ -\ -# Compile simple-tls -cd /tmp/simple-tls/ && \ -git checkout $SIMPLE_TLS -b build && VERSION=`git describe --tags` && \ -sed -i 's/version = "unknown\/dev"/version = "'$VERSION'"/g' main.go && \ -env CGO_ENABLED=0 go build -trimpath -ldflags "-s -w" && \ -mv ./simple-tls /tmp/release/ && \ -\ -# Compile xray-plugin -cd /tmp/xray-plugin/ && VERSION=`git describe --tags` && \ -env CGO_ENABLED=0 go build -trimpath -ldflags "-X main.VERSION=$VERSION -s -w" && \ -mv ./xray-plugin /tmp/release/ && \ -\ -# Compile Cloak -cd /tmp/Cloak/ && VERSION=`git describe --tags` && \ -env CGO_ENABLED=0 go build -trimpath -ldflags "-X main.version=$VERSION -s -w" ./cmd/ck-client && \ -env CGO_ENABLED=0 go build -trimpath -ldflags "-X main.version=$VERSION -s -w" ./cmd/ck-server && \ -mv ./ck-client ./ck-server /tmp/release/ && \ -\ -# Compile Gost -cd /tmp/gost/ && git checkout $GOST_VERSION && \ -cd ./cmd/gost/ && env CGO_ENABLED=0 go build -trimpath -ldflags "-s -w" && \ -mv ./gost /tmp/release/ && \ -\ -# Compile Xray-core -cd /tmp/Xray-core/ && git checkout $XRAY_VERSION && \ -env CGO_ENABLED=0 go build -o xray -trimpath -ldflags "-s -w" ./main && \ -mv ./xray /tmp/release/ && \ -\ -# Compile v2fly-core -cd /tmp/v2ray-core/ && git checkout $V2FLY_VERSION && \ -env CGO_ENABLED=0 go build -o v2ray -trimpath -ldflags "-s -w" ./main && \ -env CGO_ENABLED=0 go build -o v2ctl -trimpath -ldflags "-s -w" -tags confonly ./infra/control/main && \ -mv ./v2ctl ./v2ray /tmp/release/ && \ -\ -# Compile Trojan-Go -cd /tmp/trojan-go/ && git checkout $TROJAN_GO_VERSION && \ -env CGO_ENABLED=0 go build -trimpath -ldflags "-X github.com/p4gefau1t/trojan-go/constant.Version=`git describe --dirty` \ - -X github.com/p4gefau1t/trojan-go/constant.Commit=`git rev-parse HEAD` -s -w" -tags "full" && \ -mv ./trojan-go /tmp/release/ && \ -\ -# Compile Hysteria -cd /tmp/hysteria && git checkout $HYSTERIA_VERSION && \ -cd ./cmd/ && env CGO_ENABLED=0 go build -o hysteria -trimpath -ldflags "-s -w \ - -X 'main.appVersion=`git describe --tags`' \ - -X 'main.appCommit=`git rev-parse HEAD`' \ - -X 'main.appDate=`date \"+%F %T\"`'" && \ -mv ./hysteria /tmp/release/ && \ -\ -# Compile dnsproxy -cd /tmp/dnsproxy/ && \ -git checkout $DNSPROXY_VERSION && VERSION=`git describe --tags` && \ -env CGO_ENABLED=0 go build -trimpath -ldflags "-X main.VersionString=$VERSION -s -w" && \ -mv ./dnsproxy /tmp/release/ && \ -\ -# Switch to Go 1.16 -export PATH=/usr/local/go-$GO_1_16/bin:$PATH && \ -\ -# Compile brook -cd /tmp/brook/ && git checkout $BROOK_VERSION && \ -env CGO_ENABLED=0 go build -trimpath -ldflags "-s -w" ./cli/brook && \ -mv ./brook /tmp/release/ && \ -\ -# Compile v2ray-plugin -cd /tmp/v2ray-plugin/ && VERSION=`git describe --tags` && \ -env CGO_ENABLED=0 go build -trimpath -ldflags "-X main.VERSION=$VERSION -s -w" && \ -mv ./v2ray-plugin /tmp/release/ && \ -\ -# Compile kcptun -cd /tmp/kcptun/ && git checkout sip003 && VERSION=`git describe --tags` && \ -go mod init github.com/shadowsocks/kcptun && go mod tidy && \ -env CGO_ENABLED=0 go build -o kcptun-client -trimpath -ldflags "-X main.VERSION=$VERSION -s -w" ./client && \ -env CGO_ENABLED=0 go build -o kcptun-server -trimpath -ldflags "-X main.VERSION=$VERSION -s -w" ./server && \ -mv ./kcptun-client ./kcptun-server /tmp/release/ && \ -\ -# Compile gost-plugin -cd /tmp/gost-plugin/ && \ -git checkout $GOST_PLUGIN -b build && VERSION=`git describe --tags` && \ -env CGO_ENABLED=0 go build -trimpath -ldflags "-X main.VERSION=$VERSION -s -w" && \ -mv ./gost-plugin /tmp/release && \ -\ -# Compile GoQuiet -cd /tmp/GoQuiet/ && VERSION=`git describe --tags` && \ -go mod init github.com/cbeuw/GoQuiet && \ -env CGO_ENABLED=0 go build -trimpath -ldflags "-X main.version=$VERSION -s -w" ./cmd/gq-client && \ -env CGO_ENABLED=0 go build -trimpath -ldflags "-X main.version=$VERSION -s -w" ./cmd/gq-server && \ -mv ./gq-client ./gq-server /tmp/release/ && \ -\ -# mos-tls-tunnel -cd /tmp/mos-tls-tunnel/ && \ -go mod init github.com/IrineSistiana/mos-tls-tunnel && go mod vendor && \ -env CGO_ENABLED=0 go build -mod=vendor -trimpath -ldflags "-s -w" ./cmd/mtt-client && \ -env CGO_ENABLED=0 go build -mod=vendor -trimpath -ldflags "-s -w" ./cmd/mtt-server && \ -mv ./mtt-client ./mtt-server /tmp/release/ && \ -\ -# Compile rabbit-plugin -cd /tmp/rabbit-plugin/ && \ -env CGO_ENABLED=0 go build -trimpath -ldflags "-s -w" && \ -mv ./rabbit-plugin /tmp/release/ && \ -\ -# Compile rabbit-tcp -cd /tmp/rabbit-tcp/ && VERSION=`git describe --tags` && \ -env CGO_ENABLED=0 go build -trimpath -ldflags "-X main.Version=$VERSION -s -w" ./cmd/rabbit.go && \ -mv ./rabbit /tmp/release/ && \ -\ -# Compile gun-plugin -cd /tmp/gun/ && \ -env CGO_ENABLED=0 go build -o gun-plugin -trimpath -ldflags "-s -w" ./cmd/sip003/ && \ -mv ./gun-plugin /tmp/release/ && \ -\ -# Compile qtun -cd /tmp/qtun/ && \ -/root/.cargo/bin/cargo build --release && \ -mv ./target/release/qtun-client /tmp/release/ && \ -mv ./target/release/qtun-server /tmp/release/ + apk add build-base cmake git glib-dev && \ + git clone https://github.com/dnomd343/shadowsocksr.git && \ + git clone https://github.com/shadowsocks/shadowsocks.git && \ + git clone https://github.com/dnomd343/shadowsocks-bootstrap.git && \ + wget https://github.com/shadowsocks/shadowsocks/archive/refs/tags/$SS_PYTHON_LEGACY.tar.gz && \ + mkdir -p /tmp/release/ && \ + tar xf ./*.tar.gz && \ + \ + # Package shadowsocksr + cd ./shadowsocksr/ && \ + sed -i 's/MutableMapping/abc.MutableMapping/' ./shadowsocks/lru_cache.py && \ + sed -i 's/MutableMapping/abc.MutableMapping/' ./shadowsocks/ordereddict.py && \ + sed -i "s/find_library(p)/'libcrypto.so.1.0.0'/g" ./shadowsocks/crypto/ctypes_openssl.py && \ + sed -i "/for path in paths:/a\ if (path.startswith('libcrypto.so')):" ./shadowsocks/crypto/util.py && \ + sed -i "/startswith/a\ path = 'libcrypto.so.1.0.0'" ./shadowsocks/crypto/util.py && \ + python3 setup.py build && cd ./build/ && mv ./lib/ ./ssr-python/ && \ + mv ./ssr-python/shadowsocks/local.py ./ssr-python/shadowsocks/server.py ./ssr-python/ && \ + chmod +x ./ssr-python/local.py ./ssr-python/server.py && \ + BZIP2=-9 tar cjf /tmp/release/ssr-python.tar.bz2 ./ssr-python/ && \ + \ + # Package shadowsocks-python (latest version) + cd ../../shadowsocks/ && git checkout master && \ + sed -i 's/if addr is/if addr ==/g' ./shadowsocks/common.py && \ + sed -i 's/and ip is not/and ip !=/g' ./shadowsocks/common.py && \ + sed -i 's/if len(block) is/if len(block) ==/g' ./shadowsocks/common.py && \ + sed -i 's/MutableMapping/abc.MutableMapping/' ./shadowsocks/lru_cache.py && \ + python3 setup.py build && cd ./build/ && mv ./lib/ ./ss-python/ && \ + mv ./ss-python/shadowsocks/local.py ./ss-python/shadowsocks/server.py ./ss-python/ && \ + chmod +x ./ss-python/local.py ./ss-python/server.py && \ + BZIP2=-9 tar cjf /tmp/release/ss-python.tar.bz2 ./ss-python/ && \ + \ + # Package shadowsocks-python (legacy version) + cd ../../shadowsocks-$SS_PYTHON_LEGACY/ && \ + sed -i 's/MutableMapping/abc.MutableMapping/' ./shadowsocks/lru_cache.py && \ + sed -i "s/find_library(p)/'libsodium.so'/g" ./shadowsocks/crypto/ctypes_libsodium.py && \ + sed -i "s/find_library(p)/'libcrypto.so.1.0.0'/g" ./shadowsocks/crypto/ctypes_openssl.py && \ + python3 setup.py build && cd ./build/ && mv ./lib/ ./ss-python-legacy/ && \ + mv ./ss-python-legacy/shadowsocks/local.py ./ss-python-legacy/shadowsocks/server.py ./ss-python-legacy/ && \ + chmod +x ./ss-python-legacy/local.py ./ss-python-legacy/server.py && \ + BZIP2=-9 tar cjf /tmp/release/ss-python-legacy.tar.bz2 ./ss-python-legacy/ && \ + \ + # Compile shadowsocks-bootstrap + cd ../../shadowsocks-bootstrap/ && mkdir ./build/ && \ + cd ./build/ && cmake -DCMAKE_BUILD_TYPE=Release .. && make && \ + mv ../bin/* /tmp/release/ && \ + \ + # Build numpy and salsa20 python module + mkdir /tmp/salsa20/ && \ + pip3 install numpy salsa20 && \ + cd /usr/local/lib/python*/site-packages/ && \ + mv ./*numpy* ./*salsa20* /tmp/salsa20/ && \ + cd /tmp/salsa20/ && rm -rf `find ./ -name '__pycache__'` && \ + BZIP2=-9 tar cjf /tmp/release/salsa20.tar.bz2 ./* -FROM alpine:3.15 as asset -COPY . /tmp/asset/local/share/ProxyC -COPY --from=build /tmp/release/ /tmp/release/ -RUN apk add gcc python3 upx && \ -mkdir -p /tmp/asset/bin/ && mkdir -p /tmp/asset/lib/ && \ -mv /tmp/release/packages.tar.gz /tmp/ && \ -cd /tmp/ && tar xf packages.tar.gz && \ -mv /tmp/release/*.tar.bz2 /tmp/packages/ && \ -mv /tmp/release/*.so* /tmp/asset/lib/ && \ -mv /tmp/release/* /tmp/asset/bin/ && \ -cd /tmp/asset/bin/ && strip * && upx -9 * && \ -cd /tmp/asset/lib/ && strip * && \ -cd /tmp/packages/ && \ -tar xf ssr-python.tar.bz2 && rm -f ./ssr-python.tar.bz2 && \ -tar xf ss-python.tar.bz2 && rm -f ./ss-python.tar.bz2 && \ -tar xf ss-python-legacy.tar.bz2 && rm -f ./ss-python-legacy.tar.bz2 && \ -PYTHON_DIR=`ls /usr/lib/ | grep ^python` && \ -mkdir -p /tmp/asset/lib/$PYTHON_DIR/ && \ -mv /tmp/packages/ /tmp/asset/lib/$PYTHON_DIR/site-packages/ +FROM python:3.10.5-alpine3.16 AS asset +COPY --from=ss-rust /tmp/release /tmp/release +COPY --from=ss-libev /tmp/release /tmp/release +COPY --from=ss-python /tmp/release /tmp/release +RUN \ + PACKAGE_DIR="usr/local/lib/$(ls /usr/local/lib/ | grep ^python)/site-packages" && \ + mkdir -p /asset/$PACKAGE_DIR/ && \ + cd /asset/$PACKAGE_DIR/ && mv /tmp/release/*.tar.bz2 ./ && \ + ls ./*.tar.bz2 | xargs -n1 tar xf && rm -rf ./*.tar.bz2 && \ + mkdir -p /asset/usr/bin/ && mkdir -p /asset/lib/ && \ + ln -s /$PACKAGE_DIR/ssr-python/local.py /asset/usr/bin/ssr-local && \ + ln -s /$PACKAGE_DIR/ssr-python/server.py /asset/usr/bin/ssr-server && \ + ln -s /$PACKAGE_DIR/ss-python/local.py /asset/usr/bin/ss-python-local && \ + ln -s /$PACKAGE_DIR/ss-python/server.py /asset/usr/bin/ss-python-server && \ + ln -s /$PACKAGE_DIR/ss-python-legacy/local.py /asset/usr/bin/ss-python-legacy-local && \ + ln -s /$PACKAGE_DIR/ss-python-legacy/server.py /asset/usr/bin/ss-python-legacy-server && \ + mv /tmp/release/*.so* /asset/lib/ && \ + mv /tmp/release/* /asset/usr/bin/ -FROM alpine:3.15 -COPY --from=asset /tmp/asset/ /usr/ -RUN apk add --no-cache boost-program_options boost-system c-ares ca-certificates \ - glib libev libsodium libstdc++ mbedtls pcre python3 redis udns && \ -echo "daemonize yes" >> /etc/redis.conf && \ -PKG_DIR=/usr/lib/`ls /usr/lib/ | grep ^python`/site-packages && \ -rm -rf `find /usr/lib/ -name '__pycache__'` && \ -ln -s $PKG_DIR/ssr-python/local.py /usr/bin/ssr-local && \ -ln -s $PKG_DIR/ssr-python/server.py /usr/bin/ssr-server && \ -ln -s $PKG_DIR/ss-python/local.py /usr/bin/ss-python-local && \ -ln -s $PKG_DIR/ss-python/server.py /usr/bin/ss-python-server && \ -ln -s $PKG_DIR/ss-python-legacy/local.py /usr/bin/ss-python-legacy-local && \ -ln -s $PKG_DIR/ss-python-legacy/server.py /usr/bin/ss-python-legacy-server && \ -ln -s /usr/bin/python3 /usr/bin/python && \ -cp /usr/local/share/ProxyC/docker/init.sh /usr/bin/ -EXPOSE 43581 -CMD ["sh","/usr/bin/init.sh"] +FROM python:3.10.5-alpine3.16 +COPY --from=asset /asset / +RUN \ + apk add --no-cache c-ares glib libev libsodium mbedtls pcre udns +# ss-libev-server --help +# ss-libev-local --help +# ss-libev-legacy-server --help +# ss-libev-legacy-local --help +# ss-rust-server --help +# ss-rust-local --help +# ss-bootstrap-server --help +# ss-bootstrap-local --help +# ss-python-server --help +# ss-python-local --help +# ss-python-legacy-server --help +# ss-python-legacy-local --help +# ssr-server --help +# ssr-local --help