From 1751d00fc94e2521c6b26953b7e809d895f3ec18 Mon Sep 17 00:00:00 2001 From: Kyle Manna Date: Wed, 4 Jun 2014 11:42:37 -0700 Subject: [PATCH] Dockerfile: Switch to leaner Debian image * Debian testing/Jessie is approximately 30% smaller the Ubuntu, use that instead. --- Dockerfile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 250d8c3..e5d172a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,10 +1,11 @@ # Original credit: https://github.com/jpetazzo/dockvpn -FROM ubuntu:14.04 +# Leaner build then Ubunutu +FROM debian:jessie MAINTAINER Kyle Manna -RUN apt-get install -y openvpn iptables git-core +RUN apt-get update && apt-get install -y openvpn iptables git-core # Update checkout to use tags when v3.0 is finally released RUN git clone https://github.com/OpenVPN/easy-rsa.git /usr/local/share/easy-rsa