Last active
August 29, 2015 14:12
-
-
Save minoritea/3de546c178e1218c601a to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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