Bump ruby to 2.4.4

This commit is contained in:
Balasankar "Balu" C 2018-06-16 20:59:16 +05:30
parent ade5adcc54
commit 8841aa79c3
9 changed files with 28 additions and 30 deletions

View file

@ -10,10 +10,10 @@ ENV LC_ALL en_US.UTF-8
ENV LANGUAGE en_US:en
RUN localedef -i en_US -f UTF-8 en_US.UTF-8
ENV RUBY_VERSION 2.3.7
RUN curl -fsSL "https://cache.ruby-lang.org/pub/ruby/2.3/ruby-${RUBY_VERSION}.tar.gz" \
ENV RUBY_VERSION 2.4.4
RUN curl -fsSL "https://cache.ruby-lang.org/pub/ruby/2.4/ruby-${RUBY_VERSION}.tar.gz" \
| tar -xzC /tmp \
&& cd /tmp/ruby-2.3.7 \
&& cd /tmp/ruby-2.4.4 \
&& ./configure --disable-install-rdoc --disable-install-doc --disable-install-capi\
&& make \
&& make install