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/alpine3.4/Dockerfile

112 lines
2.8 KiB
Docker
Raw Normal View History

2017-01-05 13:24:40 -05:00
FROM alpine:3.4
2016-01-04 14:55:44 -05:00
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
2016-01-04 14:55:44 -05:00
ENV RUBY_MAJOR 2.3
ENV RUBY_VERSION 2.3.7
ENV RUBY_DOWNLOAD_SHA256 c61f8f2b9d3ffff5567e186421fa191f0d5e7c2b189b426bb84498825d548edb
ENV RUBYGEMS_VERSION 2.7.6
ENV BUNDLER_VERSION 1.16.1
2016-01-04 14:55:44 -05:00
2016-02-03 16:02:20 -05:00
# some of ruby's build scripts are written in ruby
2016-09-20 13:20:23 -04:00
# we purge system ruby later to make sure our final image uses what we just built
# readline-dev vs libedit-dev: https://bugs.ruby-lang.org/issues/11869 and https://github.com/docker-library/ruby/issues/75
2016-02-03 16:02:20 -05:00
RUN set -ex \
2016-09-20 13:20:23 -04:00
\
2016-01-04 14:55:44 -05:00
&& apk add --no-cache --virtual .ruby-builddeps \
autoconf \
bison \
bzip2 \
bzip2-dev \
ca-certificates \
coreutils \
dpkg-dev dpkg \
2016-01-04 14:55:44 -05:00
gcc \
gdbm-dev \
glib-dev \
libc-dev \
libffi-dev \
openssl \
openssl-dev \
2016-01-04 14:55:44 -05:00
libxml2-dev \
libxslt-dev \
linux-headers \
make \
ncurses-dev \
procps \
readline-dev \
2016-01-04 14:55:44 -05:00
ruby \
2016-09-20 13:20:23 -04:00
tar \
xz \
2016-01-04 14:55:44 -05:00
yaml-dev \
zlib-dev \
2016-09-20 13:20:23 -04:00
\
&& wget -O ruby.tar.xz "https://cache.ruby-lang.org/pub/ruby/${RUBY_MAJOR%-rc}/ruby-$RUBY_VERSION.tar.xz" \
&& echo "$RUBY_DOWNLOAD_SHA256 *ruby.tar.xz" | sha256sum -c - \
2016-09-20 13:20:23 -04:00
\
&& mkdir -p /usr/src/ruby \
&& tar -xJf ruby.tar.xz -C /usr/src/ruby --strip-components=1 \
&& rm ruby.tar.xz \
2016-09-20 13:20:23 -04:00
\
2016-01-04 14:55:44 -05:00
&& cd /usr/src/ruby \
2016-09-20 13:20:23 -04:00
\
# hack in "ENABLE_PATH_CHECK" disabling to suppress:
# warning: Insecure world writable dir
&& { \
echo '#define ENABLE_PATH_CHECK 0'; \
echo; \
cat file.c; \
} > file.c.new \
&& mv file.c.new file.c \
\
2016-01-04 14:55:44 -05:00
&& autoconf \
&& gnuArch="$(dpkg-architecture --query DEB_BUILD_GNU_TYPE)" \
2016-09-20 13:20:23 -04:00
# the configure script does not detect isnan/isinf as macros
&& export ac_cv_func_isnan=yes ac_cv_func_isinf=yes \
&& ./configure \
--build="$gnuArch" \
--disable-install-doc \
--enable-shared \
&& make -j "$(nproc)" \
2016-01-04 14:55:44 -05:00
&& make install \
2016-09-20 13:20:23 -04:00
\
2016-01-04 14:55:44 -05:00
&& runDeps="$( \
scanelf --needed --nobanner --format '%n#p' --recursive /usr/local \
| tr ',' '\n' \
2016-01-04 14:55:44 -05:00
| sort -u \
| awk 'system("[ -e /usr/local/lib/" $1 " ]") == 0 { next } { print "so:" $1 }' \
2016-01-04 14:55:44 -05:00
)" \
&& apk add --virtual .ruby-rundeps $runDeps \
bzip2 \
ca-certificates \
libffi-dev \
openssl-dev \
procps \
yaml-dev \
2016-01-04 14:55:44 -05:00
zlib-dev \
&& apk del .ruby-builddeps \
2016-09-20 13:20:23 -04:00
&& cd / \
&& rm -r /usr/src/ruby \
\
2017-10-21 19:56:02 -04:00
&& gem update --system "$RUBYGEMS_VERSION" \
2018-01-22 19:08:25 -05:00
&& gem install bundler --version "$BUNDLER_VERSION" --force \
&& rm -r /root/.gem/
2016-02-03 16:02:20 -05:00
# install things globally, for great justice
2016-02-04 17:55:28 -05:00
# and don't create ".bundle" in all our apps
2016-02-03 16:02:20 -05:00
ENV GEM_HOME /usr/local/bundle
2016-02-04 17:55:28 -05:00
ENV BUNDLE_PATH="$GEM_HOME" \
BUNDLE_BIN="$GEM_HOME/bin" \
BUNDLE_SILENCE_ROOT_WARNING=1 \
BUNDLE_APP_CONFIG="$GEM_HOME"
ENV PATH $BUNDLE_BIN:$PATH
RUN mkdir -p "$GEM_HOME" "$BUNDLE_BIN" \
&& chmod 777 "$GEM_HOME" "$BUNDLE_BIN"
2016-01-04 14:55:44 -05:00
CMD [ "irb" ]