From 8d24830549e05182a7974b8ec2d0c4130be959b5 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Erik=20Hedenstr=C3=B6m?= <erik@codemate.se>
Date: Tue, 2 Sep 2014 16:03:20 +0200
Subject: [PATCH] Switched to apt-fast

---
 Dockerfile | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/Dockerfile b/Dockerfile
index 3b11594..473d9ce 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -8,7 +8,7 @@ MAINTAINER Erik Hedenström <erik@codemate.se>
 
 # Install and configure Exim
 RUN \
-  apt-get -y install exim4-daemon-light && \
+  apt-fast -y install exim4-daemon-light && \
   sed -i -e "s/dc_eximconfig_configtype='local'/dc_eximconfig_configtype='internet'/" /etc/exim4/update-exim4.conf.conf && \
   sed -i -e "s/127.0.0.1/0.0.0.0/" /etc/exim4/update-exim4.conf.conf && \
   update-exim4.conf
@@ -17,8 +17,8 @@ RUN \
 RUN \
   echo "deb http://pkg.jenkins-ci.org/debian binary/" > /etc/apt/sources.list.d/jenkins.list && \
   curl http://pkg.jenkins-ci.org/debian/jenkins-ci.org.key | apt-key add - && \
-  apt-get update && \
-  apt-get -y install jenkins
+  apt-fast update && \
+  apt-fast -y install jenkins
 
 # Add startup script and SSH config
 ADD ssh /etc/ssh/jenkins
-- 
GitLab