We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0324ba9 commit c53b1f6Copy full SHA for c53b1f6
1 file changed
ruby/1.9.3/Dockerfile
@@ -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