1
0
Fork 0
mirror of https://github.com/docker-library/ruby.git synced 2022-11-09 11:41:34 -05:00

Merge pull request #7 from infosiftr/cleanup

Clean up apt cache after installing
This commit is contained in:
Tianon Gravi 2014-08-14 10:12:40 -07:00
commit e9241e3ee0
2 changed files with 2 additions and 0 deletions

View file

@ -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 \

View file

@ -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 \