From 81f48a0c4a01a131a925ce1384d6673733f6ddd8 Mon Sep 17 00:00:00 2001 From: Bertrand Gouny Date: Sun, 3 Sep 2017 14:06:50 +0200 Subject: [PATCH] tinc 1.1pre15 --- Makefile | 2 +- image/Dockerfile | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Makefile b/Makefile index a0afa86..ed2d305 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,5 @@ NAME = osixia/tinc -VERSION = 0.2.0 +VERSION = 0.2.1 .PHONY: build build-nocache test tag-latest push push-latest release git-tag-version diff --git a/image/Dockerfile b/image/Dockerfile index a2b02b1..9f9c3ac 100644 --- a/image/Dockerfile +++ b/image/Dockerfile @@ -4,7 +4,7 @@ FROM osixia/light-baseimage:1.1.0 MAINTAINER Bertrand Gouny # Tinc version -ARG TINC_VERSION=1.1pre14 +ARG TINC_VERSION=1.1pre15 # Download, build and install Tinc RUN apt-get -y update \ @@ -12,8 +12,8 @@ RUN apt-get -y update \ ca-certificates \ curl \ gcc \ - libssl1.0.2 \ - libssl1.0-dev \ + libssl1.1 \ + libssl-dev \ liblzo2-2 \ liblzo2-dev \ libncurses5 \ @@ -33,7 +33,7 @@ RUN apt-get -y update \ && cd - \ && mkdir -p /usr/local/var/run/ \ && apt-get remove -y --purge --auto-remove ca-certificates curl gcc \ - libssl1.0-dev liblzo2-dev libncurses5-dev libreadline-dev make pkg-config zlib1g-dev \ + libssl-dev liblzo2-dev libncurses5-dev libreadline-dev make pkg-config zlib1g-dev \ && rm -f tinc.tar.gz \ && rm -rf /container/tinc-sources \ && apt-get clean \