-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
06a7b9b
commit 81f48a0
Showing
2 changed files
with
5 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,16 +4,16 @@ FROM osixia/light-baseimage:1.1.0 | |
MAINTAINER Bertrand Gouny <[email protected]> | ||
|
||
# Tinc version | ||
ARG TINC_VERSION=1.1pre14 | ||
ARG TINC_VERSION=1.1pre15 | ||
|
||
# Download, build and install Tinc | ||
RUN apt-get -y update \ | ||
&& LC_ALL=C DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends \ | ||
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 \ | ||
|