mirror of
https://github.com/docker-library/ruby.git
synced 2022-11-09 11:41:34 -05:00
29 lines
864 B
Docker
29 lines
864 B
Docker
FROM buildpack-deps:jessie
|
|
|
|
RUN apt-get update && apt-get install -y curl procps && rm -rf /var/lib/apt/lists/*
|
|
|
|
ENV RUBY_MAJOR 2.0
|
|
ENV RUBY_VERSION 2.0.0-p576
|
|
|
|
# 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 ruby \
|
|
&& 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 \
|
|
&& make -j"$(nproc)" \
|
|
&& apt-get purge -y --auto-remove bison ruby \
|
|
&& make install \
|
|
&& rm -r /usr/src/ruby
|
|
|
|
# skip installing gem documentation
|
|
RUN echo 'gem: --no-rdoc --no-ri' >> /.gemrc
|
|
|
|
RUN gem install bundler
|
|
|
|
CMD [ "irb" ]
|