mirror of https://github.com/grpc/grpc.git
The C based gRPC (C++, Python, Ruby, Objective-C, PHP, C#)
https://grpc.io/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
583 B
15 lines
583 B
9 years ago
|
#==================
|
||
|
# Ruby dependencies
|
||
|
|
||
|
# Install rvm
|
||
|
RUN gpg --keyserver hkp://keys.gnupg.net --recv-keys 409B6B1796C275462A1703113804BB82D39DC0E3
|
||
|
RUN \curl -sSL https://get.rvm.io | bash -s stable
|
||
|
|
||
|
# Install Ruby 2.1
|
||
|
RUN /bin/bash -l -c "rvm install ruby-2.1"
|
||
|
RUN /bin/bash -l -c "rvm use --default ruby-2.1"
|
||
|
RUN /bin/bash -l -c "echo 'gem: --no-ri --no-rdoc' > ~/.gemrc"
|
||
|
RUN /bin/bash -l -c "echo 'export PATH=/usr/local/rvm/bin:$PATH' >> ~/.bashrc"
|
||
|
RUN /bin/bash -l -c "echo 'rvm --default use ruby-2.1' >> ~/.bashrc"
|
||
|
RUN /bin/bash -l -c "gem install bundler --no-ri --no-rdoc"
|