ss-rs 0.2.20

An unofficial shadowsocks implementation that can work with official shadowsocks.
Documentation
1
2
3
4
5
6
7
8
9
10
FROM rust as builder
WORKDIR /root/ss-rs
COPY . .
RUN cargo install --path .

FROM ubuntu
COPY --from=builder /usr/local/cargo/bin/ss-rs /usr/local/bin/
COPY --from=builder /root/ss-rs/acl /root/acl

EXPOSE 8000