From 950a673e59df846608f624ee55321d36ba1f89ba Mon Sep 17 00:00:00 2001 From: Joe Ferguson Date: Thu, 14 Aug 2014 10:50:29 -0600 Subject: [PATCH] Clean up apt cache after installing --- 1.9/Dockerfile | 1 + 2.1/Dockerfile | 1 + 2 files changed, 2 insertions(+) diff --git a/1.9/Dockerfile b/1.9/Dockerfile index c3e8c20be..33d84393d 100644 --- a/1.9/Dockerfile +++ b/1.9/Dockerfile @@ -7,6 +7,7 @@ ENV RUBY_VERSION 1.9.3-p547 # we purge this later to make sure our final image uses what we just built RUN apt-get update \ && apt-get install -y bison curl ruby procps \ + && rm -rf /var/lib/apt/lists/* \ && mkdir -p /usr/src/ruby \ && curl -SL "http://cache.ruby-lang.org/pub/ruby/$RUBY_MAJOR/ruby-$RUBY_VERSION.tar.bz2" \ | tar -xjC /usr/src/ruby --strip-components=1 \ diff --git a/2.1/Dockerfile b/2.1/Dockerfile index ff735ec94..ead02c37e 100644 --- a/2.1/Dockerfile +++ b/2.1/Dockerfile @@ -7,6 +7,7 @@ ENV RUBY_VERSION 2.1.2 # we purge this later to make sure our final image uses what we just built RUN apt-get update \ && apt-get install -y bison curl ruby procps \ + && rm -rf /var/lib/apt/lists/* \ && mkdir -p /usr/src/ruby \ && curl -SL "http://cache.ruby-lang.org/pub/ruby/$RUBY_MAJOR/ruby-$RUBY_VERSION.tar.bz2" \ | tar -xjC /usr/src/ruby --strip-components=1 \