From b81b2dd472eda903786ff4e4babdf39d12a09e10 Mon Sep 17 00:00:00 2001 From: Adam Monsen Date: Fri, 24 Jun 2016 13:53:45 -0700 Subject: [PATCH] Derive from alpine 3.4 instead of 3.2 To work around known vulnerabilities in alpine 3.2 such as CVE-2016-2177 and CVE-2016-2178. See https://github.com/kylemanna/docker-openvpn/issues/140 --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 49f09f1..289b1a0 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,7 @@ # Original credit: https://github.com/jpetazzo/dockvpn # Smallest base image -FROM alpine:3.2 +FROM alpine:3.4 MAINTAINER Kyle Manna