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

28 lines
785 B
Docker
Raw Normal View History

2014-08-12 19:56:51 -04:00
FROM buildpack-deps:wheezy
2014-08-12 19:56:51 -04:00
ENV RUBY_MAJOR 1.9
ENV RUBY_VERSION 1.9.3-p547
# some of ruby's build scripts are written in ruby
# 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 \
2014-08-14 12:50:29 -04:00
&& 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 \
&& cd /usr/src/ruby \
&& autoconf \
&& ./configure --disable-install-doc \
2014-08-12 19:56:51 -04:00
&& make \
&& apt-get purge -y --auto-remove bison ruby procps \
&& make install \
&& rm -r /usr/src/ruby
# skip installing gem documentation
RUN echo 'gem: --no-rdoc --no-ri' >> /.gemrc
RUN gem install bundler
2014-08-12 20:09:49 -04:00
CMD [ "irb" ]