1
0
mirror of https://github.com/rlister/dockerfiles.git synced 2025-12-13 01:36:20 +00:00

update to ruby 2.0.0-p576

This commit is contained in:
Richard Lister
2014-10-22 12:44:33 -04:00
parent 253adb56f5
commit 81b8ebb013

View File

@@ -5,10 +5,10 @@ MAINTAINER Ric Lister, rlister@gmail.com
RUN apt-get update && apt-get install -y \
build-essential zlib1g-dev libssl-dev libreadline6-dev libyaml-dev
ADD http://cache.ruby-lang.org/pub/ruby/2.0/ruby-2.0.0-p481.tar.gz /tmp/
ADD http://cache.ruby-lang.org/pub/ruby/2.0/ruby-2.0.0-p576.tar.gz /tmp/
RUN tar -zxf /tmp/ruby-2.0.0-p481.tar.gz && \
(cd ruby-2.0.0-p481 && ./configure --disable-install-doc && make install) && \
rm -rf /tmp/ruby-2.0.0-p481.tar.gz && rm -rf ruby-2.0.0-p481
RUN tar -zxf /tmp/ruby-2.0.0-p576.tar.gz && \
(cd ruby-2.0.0-p576 && ./configure --disable-install-doc && make install) && \
rm -rf /tmp/ruby-2.0.0-p576.tar.gz && rm -rf ruby-2.0.0-p576
RUN gem install bundler --no-rdoc --no-ri