Skip to content

Instantly share code, notes, and snippets.

@minoritea
Last active August 29, 2015 14:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save minoritea/3de546c178e1218c601a to your computer and use it in GitHub Desktop.
Save minoritea/3de546c178e1218c601a to your computer and use it in GitHub Desktop.
FROM ruby
RUN apt-get update
RUN apt-get install -y bison wget
RUN wget http://cache.ruby-lang.org/pub/ruby/2.2/ruby-2.2.0-preview2.tar.gz
RUN tar zxvf ruby-2.2.0-preview2.tar.gz
WORKDIR /ruby-2.2.0-preview2
RUN autoconf
RUN ./configure
RUN make
RUN make install
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment