File tree 3 files changed +40
-19
lines changed
3 files changed +40
-19
lines changed Original file line number Diff line number Diff line change 1
1
# Changelog
2
+ All notable changes to this project will be documented in this file.
2
3
3
- ## 0.2.0
4
- - Upgrade baseimage: light-baseimage:1.1.0 (debian stretch)
4
+ The format is based on [ Keep a Changelog ] ( http://keepachangelog.com/en/1.0.0/ )
5
+ and this project adheres to [ Semantic Versioning ] ( http://semver.org/spec/v2.0.0.html ) .
5
6
6
- ## 0.1.4
7
- - Upgrade baseimage: light-baseimage:0.2.6
7
+ ## [ 0.2.2] - 2018-07-29
8
+ ### Changed
9
+ - Upgrade tinc version to 1.1pre16
10
+
11
+ ## [ 0.2.1] - 2017-09-03
12
+ ### Changed
13
+ - Upgrade tinc version to 1.1pre15
8
14
9
- ## 0.1.3
10
- - Upgrade baseimage: light-baseimage:0.2.5
15
+ ## [ 0.2.0] - 2017-07-19
16
+ ### Changed
17
+ - Upgrade baseimage to light-baseimage:1.1.0 (debian stretch)
18
+
19
+ ## [ 0.1.4] - 2016-11-08
20
+ ### Changed
21
+ - Upgrade baseimage to light-baseimage:0.2.6
22
+
23
+ ## [ 0.1.3] - 2016-09-02
24
+ ### Changed
25
+ - Upgrade baseimage to light-baseimage:0.2.5
11
26
- Add TINC_CMD_ARGS environment variable
12
27
- Compile tinc from sources
13
28
14
- ## 0.1.2 (unreleased)
29
+ ## [ 0.1.1] - 2016-07-26
30
+ ### Changed
31
+ - Upgrade baseimage to experimental-light-baseimage:0.1.3
15
32
16
- ## 0.1.1
17
- - Upgrade baseimage: experimental-light-baseimage:0.1.3
33
+ ## 0.1.0 - 2016-02-20
34
+ Initial release
18
35
19
- ## 0.1.0
20
- - Initial release
36
+ [ 0.2.2 ] : https://github.com/osixia/docker-tinc/compare/v0.2.1...v0.2.2
37
+ [ 0.2.1 ] : https://github.com/osixia/docker-tinc/compare/v0.2.0...v0.2.1
38
+ [ 0.2.0 ] : https://github.com/osixia/docker-tinc/compare/v0.1.4...v0.2.0
39
+ [ 0.1.4 ] : https://github.com/osixia/docker-tinc/compare/v0.1.3...v0.1.4
40
+ [ 0.1.3 ] : https://github.com/osixia/docker-tinc/compare/v0.1.2...v0.1.3
41
+ [ 0.1.2 ] : https://github.com/osixia/docker-tinc/compare/v0.1.1...v0.1.2
42
+ [ 0.1.1 ] : https://github.com/osixia/docker-tinc/compare/v0.1.0...v0.1.1
Original file line number Diff line number Diff line change 1
1
NAME = osixia/tinc
2
- VERSION = 0.2.1
2
+ VERSION = 0.2.2
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 1
1
# Use osixia/light-baseimage
2
2
# sources: https://github.com/osixia/docker-light-baseimage
3
3
FROM osixia/light-baseimage:1.1.0
4
- MAINTAINER Bertrand Gouny <
[email protected] >
5
4
6
5
# Tinc version
7
6
ARG TINC_VERSION=1.1pre15
8
7
9
8
# Download, build and install Tinc
10
9
RUN apt-get -y update \
11
10
&& LC_ALL=C DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends \
12
- ca-certificates \
13
- curl \
11
+ ca-certificates \
12
+ curl \
14
13
gcc \
15
14
libssl1.1 \
16
15
libssl-dev \
17
16
liblzo2-2 \
18
17
liblzo2-dev \
19
18
libncurses5 \
20
- libncurses5-dev \
19
+ libncurses5-dev \
21
20
libreadline7 \
22
- libreadline-dev \
21
+ libreadline-dev \
23
22
make \
24
23
pkg-config \
25
24
zlib1g \
26
- zlib1g-dev \
25
+ zlib1g-dev \
27
26
&& curl -o tinc.tar.gz -SL https://www.tinc-vpn.org/packages/tinc-${TINC_VERSION}.tar.gz \
28
27
&& mkdir -p /container/tinc-sources \
29
28
&& tar -xzf tinc.tar.gz --strip 1 -C /container/tinc-sources \
@@ -33,7 +32,7 @@ RUN apt-get -y update \
33
32
&& cd - \
34
33
&& mkdir -p /usr/local/var/run/ \
35
34
&& apt-get remove -y --purge --auto-remove ca-certificates curl gcc \
36
- 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 \
37
36
&& rm -f tinc.tar.gz \
38
37
&& rm -rf /container/tinc-sources \
39
38
&& apt-get clean \
You can’t perform that action at this time.
0 commit comments