-
Notifications
You must be signed in to change notification settings - Fork 2
/
Dockerfile
70 lines (66 loc) · 2.22 KB
/
Dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
#
# Dockerfile for shadowsocks-libev
#
FROM alpine
MAINTAINER kev <wangyao0125@gmail.com>
ARG SS_VER=3.1.1
ARG SS_URL=https://github.com/shadowsocks/shadowsocks-libev/releases/download/v$SS_VER/shadowsocks-libev-$SS_VER.tar.gz
ENV SERVER_ADDR 0.0.0.0
ENV SERVER_PORT 8388
ENV PASSWORD=
ENV METHOD aes-256-cfb
ENV TIMEOUT 300
ENV DNS_ADDR 8.8.8.8
ENV DNS_ADDR_2 8.8.4.4
ENV ARGS=
RUN set -ex && \
apk add --no-cache --virtual .build-deps \
autoconf \
build-base \
curl \
libev-dev \
linux-headers \
libsodium-dev \
mbedtls-dev \
pcre-dev \
git \
tar \
c-ares-dev \
&& apk add --no-cache \
--virtual TMP autoconf make libtool automake \
openssl asciidoc xmlto \
libpcre32 libev-dev g++ linux-headers && \
cd /tmp && \
curl -sSL $SS_URL | tar xz --strip 1 && \
./configure --prefix=/usr --disable-documentation && \
make install && \
cd .. && \
git clone https://github.com/shadowsocks/simple-obfs.git && \
cd simple-obfs && \
git submodule update --init --recursive && \
./autogen.sh && \
./configure && make && \
make install && \
runDeps="$( \
scanelf --needed --nobanner /usr/bin/ss-* \
| awk '{ gsub(/,/, "\nso:", $2); print "so:" $2 }' \
| xargs -r apk info --installed \
| sort -u \
)" && \
apk add --no-cache --virtual .run-deps $runDeps && \
apk del .build-deps && \
rm -rf /tmp/* \
&& apk del TMP
USER nobody
EXPOSE $SERVER_PORT/tcp $SERVER_PORT/udp
CMD ss-server -s $SERVER_ADDR \
-p $SERVER_PORT \
-k ${PASSWORD:-$(hostname)} \
-m $METHOD \
-t $TIMEOUT \
--fast-open \
-d $DNS_ADDR \
-d $DNS_ADDR_2 \
--plugin obfs-server --plugin-opts "obfs=http" \
-u \
$ARGS