File tree 3 files changed +22
-18
lines changed
3 files changed +22
-18
lines changed Original file line number Diff line number Diff line change @@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file.
4
4
The format is based on [ Keep a Changelog] ( http://keepachangelog.com/en/1.0.0/ )
5
5
and this project adheres to [ Semantic Versioning] ( http://semver.org/spec/v2.0.0.html ) .
6
6
7
+ ## [ 0.2.3] - 2018-10-15
8
+ ### Changed
9
+ - Upgrade tinc version to 1.1pre17
10
+
7
11
## [ 0.2.2] - 2018-07-29
8
12
### Changed
9
13
- Upgrade tinc version to 1.1pre16
Original file line number Diff line number Diff line change 1
1
NAME = osixia/tinc
2
- VERSION = 0.2.2
2
+ VERSION = 0.2.3
3
3
4
4
.PHONY : build build-nocache test tag-latest push push-latest release git-tag-version
5
5
Original file line number Diff line number Diff line change 3
3
FROM osixia/light-baseimage:1.1.0
4
4
5
5
# Tinc version
6
- ARG TINC_VERSION=1.1pre15
6
+ ARG TINC_VERSION=1.1pre17
7
7
8
8
# Download, build and install Tinc
9
9
RUN apt-get -y update \
10
10
&& LC_ALL=C DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends \
11
- ca-certificates \
12
- curl \
13
- gcc \
14
- libssl1.1 \
15
- libssl-dev \
16
- liblzo2-2 \
17
- liblzo2-dev \
18
- libncurses5 \
19
- libncurses5-dev \
20
- libreadline7 \
21
- libreadline-dev \
22
- make \
23
- pkg-config \
24
- zlib1g \
25
- zlib1g-dev \
11
+ ca-certificates \
12
+ curl \
13
+ gcc \
14
+ libssl1.1 \
15
+ libssl-dev \
16
+ liblzo2-2 \
17
+ liblzo2-dev \
18
+ libncurses5 \
19
+ libncurses5-dev \
20
+ libreadline7 \
21
+ libreadline-dev \
22
+ make \
23
+ pkg-config \
24
+ zlib1g \
25
+ zlib1g-dev \
26
26
&& curl -o tinc.tar.gz -SL https://www.tinc-vpn.org/packages/tinc-${TINC_VERSION}.tar.gz \
27
27
&& mkdir -p /container/tinc-sources \
28
28
&& tar -xzf tinc.tar.gz --strip 1 -C /container/tinc-sources \
@@ -32,7 +32,7 @@ RUN apt-get -y update \
32
32
&& cd - \
33
33
&& mkdir -p /usr/local/var/run/ \
34
34
&& apt-get remove -y --purge --auto-remove ca-certificates curl gcc \
35
- libssl-dev liblzo2-dev libncurses5-dev libreadline-dev make pkg-config zlib1g-dev \
35
+ libssl-dev liblzo2-dev libncurses5-dev libreadline-dev make pkg-config zlib1g-dev \
36
36
&& rm -f tinc.tar.gz \
37
37
&& rm -rf /container/tinc-sources \
38
38
&& apt-get clean \
You can’t perform that action at this time.
0 commit comments