Skip to content
This repository has been archived by the owner on Jan 25, 2023. It is now read-only.

Commit

Permalink
Update to ruby 2.6.2
Browse files Browse the repository at this point in the history
  • Loading branch information
bcomnes committed Mar 14, 2019
1 parent 5cc8411 commit f6d8f8a
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
8 changes: 4 additions & 4 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ RUN export DEBIAN_FRONTEND=noninteractive && \
libicu-dev \
libcurl3 \
liblttng-ust0 \
libkrb5-3 \
libkrb5-3 \
&& \
/var/lib/dpkg/info/ca-certificates-java.postinst configure && \
apt-get clean && \
Expand Down Expand Up @@ -247,8 +247,8 @@ ENV PATH /usr/local/rvm/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/s

# Match this set latest Stable releases we can support on https://www.ruby-lang.org/en/downloads/
RUN /bin/bash -c "source ~/.rvm/scripts/rvm && \
rvm install 2.6.1 && rvm use 2.6.1 && gem install bundler && \
rvm use 2.6.1 --default && rvm cleanup all"
rvm install 2.6.2 && rvm use 2.6.2 && gem install bundler && \
rvm use 2.6.2 --default && rvm cleanup all"

ENV PATH /usr/local/rvm/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
USER root
Expand Down Expand Up @@ -412,7 +412,7 @@ RUN gimme
################################################################################
USER buildbot
WORKDIR /tmp
RUN wget https://dot.net/v1/dotnet-install.sh
RUN wget https://dot.net/v1/dotnet-install.sh
RUN chmod u+x /tmp/dotnet-install.sh
RUN /tmp/dotnet-install.sh -c Current
ENV PATH "$PATH:/opt/buildhome/.dotnet/tools"
Expand Down
2 changes: 1 addition & 1 deletion included_software.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ For instructions on how to run this image locally to test your build, please see
The specific patch versions included will depend on when the image was last built (except Ruby). It is highly suggested you depend only on minor versions, so that we can ensure the language has the latest updates (especially if security related).

* Ruby - `RUBY_VERSION`, `.ruby-version`
* 2.6.1 (default)
* 2.6.2 (default)
* Any version that `rvm` can install.
* Node.js - `NODE_VERSION`, `.nvmrc`, `.node-version`
* 10 (default)
Expand Down
2 changes: 1 addition & 1 deletion run-build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ fi
cd $NETLIFY_REPO_DIR

: ${NODE_VERSION="10"}
: ${RUBY_VERSION="2.6.1"}
: ${RUBY_VERSION="2.6.2"}
: ${YARN_VERSION="1.13.0"}
: ${PHP_VERSION="5.6"}
: ${GO_VERSION="1.12"}
Expand Down
2 changes: 1 addition & 1 deletion test-tools/test-build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ set -e

: ${NETLIFY_IMAGE="netlify/build"}
: ${NODE_VERSION="10"}
: ${RUBY_VERSION="2.6.1"}
: ${RUBY_VERSION="2.6.2"}
: ${YARN_VERSION="1.13.0"}
: ${NPM_VERSION=""}
: ${HUGO_VERSION="0.54"}
Expand Down

0 comments on commit f6d8f8a

Please sign in to comment.