Skip to content

Commit 79801b4

Browse files
committed
Merge branch 'hotfix-0.2.3' into stable
2 parents 681dd8b + 0e26f35 commit 79801b4

File tree

3 files changed

+22
-18
lines changed

3 files changed

+22
-18
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
55
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
66

7+
## [0.2.3] - 2018-10-15
8+
### Changed
9+
- Upgrade tinc version to 1.1pre17
10+
711
## [0.2.2] - 2018-07-29
812
### Changed
913
- Upgrade tinc version to 1.1pre16

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
NAME = osixia/tinc
2-
VERSION = 0.2.2
2+
VERSION = 0.2.3
33

44
.PHONY: build build-nocache test tag-latest push push-latest release git-tag-version
55

image/Dockerfile

+17-17
Original file line numberDiff line numberDiff line change
@@ -3,26 +3,26 @@
33
FROM osixia/light-baseimage:1.1.0
44

55
# Tinc version
6-
ARG TINC_VERSION=1.1pre15
6+
ARG TINC_VERSION=1.1pre17
77

88
# Download, build and install Tinc
99
RUN apt-get -y update \
1010
&& 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 \
2626
&& curl -o tinc.tar.gz -SL https://www.tinc-vpn.org/packages/tinc-${TINC_VERSION}.tar.gz \
2727
&& mkdir -p /container/tinc-sources \
2828
&& tar -xzf tinc.tar.gz --strip 1 -C /container/tinc-sources \
@@ -32,7 +32,7 @@ RUN apt-get -y update \
3232
&& cd - \
3333
&& mkdir -p /usr/local/var/run/ \
3434
&& 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 \
3636
&& rm -f tinc.tar.gz \
3737
&& rm -rf /container/tinc-sources \
3838
&& apt-get clean \

0 commit comments

Comments
 (0)