Skip to content

Commit c53b1f6

Browse files
committed
Added Ruby 1.9.3 docker file.
1 parent 0324ba9 commit c53b1f6

1 file changed

Lines changed: 12 additions & 0 deletions

File tree

ruby/1.9.3/Dockerfile

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
FROM ruby:1.9.3
2+
3+
# Install stuff
4+
RUN apt-get update -qq && apt-get install -y build-essential
5+
6+
# Install Gems. Use Bundler 1.17.3 as 2+ does not work with
7+
# Ruby 1.9.3. Also update the rubygems to prevent frozen string
8+
# errors. Rubygems 2.7.8 is the latest version to support Ruby 1.9.3.
9+
RUN gem install rubygems-update -v 2.7.8
10+
RUN update_rubygems
11+
RUN gem install bundler -v 1.17.3
12+
RUN bundle install

0 commit comments

Comments
 (0)