Skip to content

Commit e362c06

Browse files
committed
Bump version
1 parent 8beac04 commit e362c06

File tree

5 files changed

+27
-13
lines changed

5 files changed

+27
-13
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ services:
99

1010
env:
1111
global:
12-
- SS_VER=2.5.0
12+
- SS_VER=2.5.1
1313
- SS_DEB=shadowsocks-libev_${SS_VER}-1_amd64.deb
1414
matrix:
1515
- URL=https://www.facebook.com/

Dockerfile

Lines changed: 11 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,20 +5,27 @@
55
FROM alpine
66
MAINTAINER EasyPi Software Foundation
77

8-
ENV SS_VER 2.5.0
8+
ENV SS_VER 2.5.1
99
ENV SS_URL https://github.com/shadowsocks/shadowsocks-libev/archive/v$SS_VER.tar.gz
1010
ENV SS_DIR shadowsocks-libev-$SS_VER
11-
ENV SS_DEP autoconf build-base curl libtool linux-headers openssl-dev
1211

1312
RUN set -ex \
14-
&& apk add --no-cache $SS_DEP \
13+
&& apk add --no-cache pcre \
14+
&& apk add --no-cache \
15+
--virtual TMP autoconf \
16+
build-base \
17+
curl \
18+
libtool \
19+
linux-headers \
20+
openssl-dev \
21+
pcre-dev \
1522
&& curl -sSL $SS_URL | tar xz \
1623
&& cd $SS_DIR \
1724
&& ./configure --disable-documentation \
1825
&& make install \
1926
&& cd .. \
2027
&& rm -rf $SS_DIR \
21-
&& apk del --purge $SS_DEP
28+
&& apk del --virtual TMP
2229

2330
ENV SERVER_ADDR 0.0.0.0
2431
ENV SERVER_PORT 8388

Dockerfile.arm

Lines changed: 11 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,20 +5,27 @@
55
FROM easypi/alpine-arm
66
MAINTAINER EasyPi Software Foundation
77

8-
ENV SS_VER 2.5.0
8+
ENV SS_VER 2.5.1
99
ENV SS_URL https://github.com/shadowsocks/shadowsocks-libev/archive/v$SS_VER.tar.gz
1010
ENV SS_DIR shadowsocks-libev-$SS_VER
11-
ENV SS_DEP autoconf build-base curl libtool linux-headers openssl-dev
1211

1312
RUN set -ex \
14-
&& apk add --no-cache $SS_DEP \
13+
&& apk add --no-cache pcre \
14+
&& apk add --no-cache \
15+
--virtual TMP autoconf \
16+
build-base \
17+
curl \
18+
libtool \
19+
linux-headers \
20+
openssl-dev \
21+
pcre-dev \
1522
&& curl -sSL $SS_URL | tar xz \
1623
&& cd $SS_DIR \
1724
&& ./configure --disable-documentation \
1825
&& make install \
1926
&& cd .. \
2027
&& rm -rf $SS_DIR \
21-
&& apk del --purge $SS_DEP
28+
&& apk del --virtual TMP
2229

2330
ENV SERVER_ADDR=
2431
ENV SERVER_PORT 8388

Dockerfile.debian

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@
55
FROM debian:jessie
66
MAINTAINER EasyPi Software Foundation
77

8-
ENV SS_VER 2.5.0
8+
ENV SS_VER 2.5.1
99
ENV SS_DIR shadowsocks-libev-${SS_VER}
1010
ENV SS_DEB shadowsocks-libev_${SS_VER}-1_amd64.deb
1111
ENV SS_URL https://github.com/shadowsocks/shadowsocks-libev/archive/v${SS_VER}.tar.gz
12-
ENV SS_DEP asciidoc autoconf build-essential debhelper dh-systemd gawk init-system-helpers libssl-dev libtool pkg-config xmlto
12+
ENV SS_DEP asciidoc autoconf build-essential debhelper dh-systemd gawk init-system-helpers libpcre3-dev libssl-dev libtool pkg-config xmlto
1313

1414
RUN set -xe \
1515
&& apt-get update \

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,9 +46,9 @@ Current version: [![release](https://img.shields.io/github/release/shadowsocks/s
4646

4747
```bash
4848
# download package
49-
wget https://github.com/EasyPi/docker-shadowsocks-libev/releases/download/v2.5.0/shadowsocks-libev_2.5.0-1_amd64.deb
49+
wget https://github.com/EasyPi/docker-shadowsocks-libev/releases/download/v2.5.1/shadowsocks-libev_2.5.1-1_amd64.deb
5050
# install package
51-
dpkg -i shadowsocks-libev_2.5.0-1_amd64.deb
51+
dpkg -i shadowsocks-libev_2.5.1-1_amd64.deb
5252
# fix broken
5353
apt-get -f install -y
5454
# edit config

0 commit comments

Comments
 (0)