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/2.3/Dockerfile

58 lines
1.7 KiB
Docker
Raw Normal View History

2015-12-25 09:46:49 -05:00
FROM buildpack-deps:jessie
2016-02-03 16:02:20 -05:00
# skip installing gem documentation
RUN mkdir -p /usr/local/etc \
&& { \
echo 'install: --no-document'; \
echo 'update: --no-document'; \
} >> /usr/local/etc/gemrc
2015-12-25 09:46:49 -05:00
ENV RUBY_MAJOR 2.3
ENV RUBY_VERSION 2.3.0
ENV RUBY_DOWNLOAD_SHA256 ba5ba60e5f1aa21b4ef8e9bf35b9ddb57286cb546aac4b5a28c71f459467e507
2016-02-01 12:33:15 -05:00
ENV RUBYGEMS_VERSION 2.5.2
2015-12-25 09:46:49 -05:00
# 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
2016-02-03 16:02:20 -05:00
RUN set -ex \
&& buildDeps=' \
bison \
libgdbm-dev \
ruby \
' \
&& apt-get update \
&& apt-get install -y --no-install-recommends $buildDeps \
2015-12-25 09:46:49 -05:00
&& rm -rf /var/lib/apt/lists/* \
&& curl -fSL -o ruby.tar.gz "http://cache.ruby-lang.org/pub/ruby/$RUBY_MAJOR/ruby-$RUBY_VERSION.tar.gz" \
&& echo "$RUBY_DOWNLOAD_SHA256 *ruby.tar.gz" | sha256sum -c - \
2016-02-03 16:02:20 -05:00
&& mkdir -p /usr/src/ruby \
2015-12-25 09:46:49 -05:00
&& tar -xzf ruby.tar.gz -C /usr/src/ruby --strip-components=1 \
&& rm ruby.tar.gz \
&& cd /usr/src/ruby \
2016-02-03 16:02:20 -05:00
&& { echo '#define ENABLE_PATH_CHECK 0'; echo; cat file.c; } > file.c.new && mv file.c.new file.c \
2015-12-25 09:46:49 -05:00
&& autoconf \
&& ./configure --disable-install-doc \
&& make -j"$(nproc)" \
&& make install \
2016-02-03 16:02:20 -05:00
&& apt-get purge -y --auto-remove $buildDeps \
2015-12-25 09:46:49 -05:00
&& gem update --system $RUBYGEMS_VERSION \
&& rm -r /usr/src/ruby
ENV BUNDLER_VERSION 1.11.2
RUN gem install bundler --version "$BUNDLER_VERSION" \
&& bundle config --global path "$GEM_HOME" \
&& bundle config --global bin "$GEM_HOME/bin" \
2016-01-25 13:32:18 -05:00
&& bundle config --global silence_root_warning true
2015-12-25 09:46:49 -05:00
2016-02-03 16:02:20 -05:00
# install things globally, for great justice
ENV GEM_HOME /usr/local/bundle
ENV PATH $GEM_HOME/bin:$PATH
RUN mkdir -p "$GEM_HOME" \
&& chmod 777 "$GEM_HOME"
2015-12-25 09:46:49 -05:00
# don't create ".bundle" in all our apps
ENV BUNDLE_APP_CONFIG $GEM_HOME
CMD [ "irb" ]