mirror of
https://github.com/bolucat/Archive.git
synced 2025-10-05 08:08:03 +08:00
17 lines
574 B
Docker
17 lines
574 B
Docker
FROM ghcr.io/shadowsocks/ssserver-rust:latest
|
|
|
|
USER root
|
|
|
|
RUN cd /tmp && \
|
|
TAG=$(wget -qO- https://api.github.com/repos/shadowsocks/v2ray-plugin/releases/latest | grep tag_name | cut -d '"' -f4) && \
|
|
wget https://github.com/shadowsocks/v2ray-plugin/releases/download/$TAG/v2ray-plugin-linux-amd64-$TAG.tar.gz && \
|
|
tar -xf *.gz && \
|
|
rm *.gz && \
|
|
mv v2ray* /usr/bin/v2ray-plugin && \
|
|
chmod +x /usr/bin/v2ray-plugin
|
|
|
|
USER nobody
|
|
|
|
ENTRYPOINT [ "/docker-entrypoint.sh" ]
|
|
CMD [ "ssserver", "--log-without-time", "-c", "/etc/shadowsocks-rust/config.json" ]
|