Skip to content
This repository has been archived by the owner. It is now read-only.

Commit e9f8feb

Browse files
committed
Merge pull request #40 from Yanchek99/master
Bumping Ruby to stay current with the latest stable
2 parents 09ca118 + 9df9b5e commit e9f8feb

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM ruby:2.2
1+
FROM ruby:2.3
22

33
# see update.sh for why all "apt-get install"s have to stay as one long line
44
RUN apt-get update && apt-get install -y nodejs --no-install-recommends && rm -rf /var/lib/apt/lists/*

onbuild/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM ruby:2.2
1+
FROM ruby:2.3
22

33
# throw errors if Gemfile has been modified since Gemfile.lock
44
RUN bundle config --global frozen 1

update.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/bin/bash
22
set -e
33

4-
rubyBase='2.2'
4+
rubyBase='2.3'
55
rubyOnbuildDockerfile="https://raw.githubusercontent.com/docker-library/ruby/master/$rubyBase/onbuild/Dockerfile"
66

77
current="$(curl -sSL 'https://rubygems.org/api/v1/gems/rails.json' | sed -r 's/^.*"version":"([^"]+)".*$/\1/')"

0 commit comments

Comments
 (0)