diff options
author | Jan Tattermusch <jtattermusch@google.com> | 2016-02-01 16:20:03 -0800 |
---|---|---|
committer | Jan Tattermusch <jtattermusch@google.com> | 2016-02-02 18:50:18 -0800 |
commit | 44372138c51a0758698e973f8c839ee08986ac4d (patch) | |
tree | e76671390e9003838b91a41a1880e0b52ff9d100 /tools/dockerfile/grpc_artifact_linux_x86/Dockerfile | |
parent | 90262f8750fff78fe983052f6b91350375daf035 (diff) |
build ruby artifact
Diffstat (limited to 'tools/dockerfile/grpc_artifact_linux_x86/Dockerfile')
-rw-r--r-- | tools/dockerfile/grpc_artifact_linux_x86/Dockerfile | 17 |
1 files changed, 16 insertions, 1 deletions
diff --git a/tools/dockerfile/grpc_artifact_linux_x86/Dockerfile b/tools/dockerfile/grpc_artifact_linux_x86/Dockerfile index e033a81ace..9522df7998 100644 --- a/tools/dockerfile/grpc_artifact_linux_x86/Dockerfile +++ b/tools/dockerfile/grpc_artifact_linux_x86/Dockerfile @@ -67,11 +67,26 @@ RUN apt-get update && apt-get install -y \ python3-all-dev \ python-pip -# Install Python packages from PyPI RUN pip install pip --upgrade RUN pip install virtualenv RUN pip install futures==2.2.0 enum34==1.0.4 protobuf==3.0.0a2 tox + +################## +# 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" + RUN mkdir /var/local/jenkins # Define the default command. |