2019-09-18 11:29:58 +02:00
|
|
|
IMAGE alpine3.8-ruby2.4_2.4.5-190620
|
2019-11-30 09:59:32 +01:00
|
|
|
FROM alpine3.8_3.8.4-190620
|
2018-09-05 17:41:38 +02:00
|
|
|
|
2018-09-12 16:08:10 +02:00
|
|
|
RUN EOF
|
2018-09-05 17:41:38 +02:00
|
|
|
# Install Ruby runtime dependencies
|
2019-11-17 14:53:05 +01:00
|
|
|
apk --no-cache add gdbm zlib
|
2018-09-05 17:41:38 +02:00
|
|
|
|
|
|
|
# Install Ruby build dependencies
|
|
|
|
apk --no-cache add --virtual .deps build-base autoconf gdbm-dev libressl-dev linux-headers readline-dev zlib-dev
|
|
|
|
|
|
|
|
# Download and unpack Ruby
|
|
|
|
mkdir -p /usr/src/ruby
|
2018-12-05 14:07:45 +01:00
|
|
|
wget http://cache.ruby-lang.org/pub/ruby/2.4/ruby-2.4.5.tar.xz -O - | tar xJf - -C /usr/src/ruby --strip-components=1
|
2018-09-05 17:41:38 +02:00
|
|
|
|
|
|
|
# Compile and install Ruby
|
2018-12-05 14:07:45 +01:00
|
|
|
cd /usr/src/ruby
|
|
|
|
autoconf
|
|
|
|
./configure --build=x86_64-linux-musl --disable-install-doc --enable-shared
|
2018-09-12 14:19:36 +02:00
|
|
|
make -j $(getconf _NPROCESSORS_ONLN)
|
2018-09-05 17:41:38 +02:00
|
|
|
make install
|
|
|
|
|
|
|
|
# Install RubyGems and Bundler
|
|
|
|
mkdir -p /usr/local/etc
|
|
|
|
echo -e 'install: --no-document\nupdate: --no-document' >/usr/local/etc/gemrc
|
|
|
|
gem update --system
|
|
|
|
|
|
|
|
# Cleanup
|
|
|
|
apk --no-cache del .deps
|
2018-12-05 14:07:45 +01:00
|
|
|
cd /root
|
|
|
|
rm -r /usr/src/ruby
|
2018-09-05 17:41:38 +02:00
|
|
|
rm -rf /root/.gem
|
2018-09-12 16:08:10 +02:00
|
|
|
EOF
|