diff options
author | Nicolas "Pixel" Noble <pixel@nobis-crew.org> | 2015-02-28 05:58:22 +0100 |
---|---|---|
committer | Nicolas "Pixel" Noble <pixel@nobis-crew.org> | 2015-02-28 05:58:22 +0100 |
commit | 2f02bb051f0c1b907b39763f6bcae0ced9571c91 (patch) | |
tree | 5a0d65311de90b949a9ae6f7191e98a788a5958f /tools/dockerfile/grpc_ruby_base | |
parent | 706239bd5a74c3e02643ec19419f265ef778ba20 (diff) |
Further cleanup.
Diffstat (limited to 'tools/dockerfile/grpc_ruby_base')
-rw-r--r-- | tools/dockerfile/grpc_ruby_base/Dockerfile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/dockerfile/grpc_ruby_base/Dockerfile b/tools/dockerfile/grpc_ruby_base/Dockerfile index f3c7289943..d58eeaaf70 100644 --- a/tools/dockerfile/grpc_ruby_base/Dockerfile +++ b/tools/dockerfile/grpc_ruby_base/Dockerfile @@ -72,7 +72,7 @@ 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" # Get the source from GitHub -RUN git clone git@github.com:grpc/grpc.git /var/local/git/grpc +RUN git clone https://github.com/grpc/grpc.git /var/local/git/grpc RUN cd /var/local/git/grpc && \ git pull --recurse-submodules && \ git submodule update --init --recursive |