Created
December 29, 2013 05:21
-
-
Save tmtk75/8167721 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 centos | |
| MAINTAINER tmtk75 | |
| RUN yum install -y gcc gcc-c++ make | |
| RUN yum install -y zlib-devel openssl-devl libyaml-devel | |
| RUN wget -O /usr/local/ruby-2.1.0.tar.gz http://cache.ruby-lang.org/pub/ruby/2.1/ruby-2.1.0.tar.gz | |
| RUN cd /usr/local; tar -xzf ruby-2.1.0.tar.gz | |
| RUN cd /usr/local/ruby-2.1.0; ./configure --prefix=/usr/local; make; make install | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment