2
0
mirror of https://github.com/vimagick/dockerfiles.git synced 2025-12-31 10:07:24 +01:00
This commit is contained in:
kev
2015-12-24 22:09:35 +08:00
parent 32a79e507e
commit 812cf7c406
4 changed files with 8 additions and 4 deletions

View File

@@ -10,7 +10,8 @@ ENV SS_URL https://github.com/shadowsocks/shadowsocks-libev/archive/v$SS_VER.tar
ENV SS_DIR shadowsocks-libev-$SS_VER
ENV SS_DEP autoconf build-base curl libtool linux-headers openssl-dev
RUN apk add --update $SS_DEP \
RUN set -ex \
&& apk add --update $SS_DEP \
&& curl -sSL $SS_URL | tar xz \
&& cd $SS_DIR \
&& ./configure \