mirror of https://github.com/grpc/grpc.git
The C based gRPC (C++, Python, Ruby, Objective-C, PHP, C#)
https://grpc.io/
14 lines
583 B
14 lines
583 B
#================== |
|
# 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"
|
|
|