aboutsummaryrefslogtreecommitdiffhomepage
path: root/tools/dockerfile/grpc_base/Dockerfile
diff options
context:
space:
mode:
authorGravatar Nicolas "Pixel" Noble <pixel@nobis-crew.org>2015-02-27 08:24:17 +0100
committerGravatar Nicolas "Pixel" Noble <pixel@nobis-crew.org>2015-02-27 08:24:17 +0100
commit20ee44ff063e6cfee8e84fa3dc901b442ecf416e (patch)
tree7fab81257de91ae4e914fb3eb70a69553da15af4 /tools/dockerfile/grpc_base/Dockerfile
parent3a718b2cd9bd6496328fbedcafc514db689eecc9 (diff)
Removing the ssh setup of the dockerfile.
Diffstat (limited to 'tools/dockerfile/grpc_base/Dockerfile')
-rw-r--r--tools/dockerfile/grpc_base/Dockerfile8
1 files changed, 0 insertions, 8 deletions
diff --git a/tools/dockerfile/grpc_base/Dockerfile b/tools/dockerfile/grpc_base/Dockerfile
index d2b5569036..91862773d5 100644
--- a/tools/dockerfile/grpc_base/Dockerfile
+++ b/tools/dockerfile/grpc_base/Dockerfile
@@ -64,13 +64,5 @@ ENV CLOUD_SDK /google-cloud-sdk
RUN $CLOUD_SDK/install.sh --usage-reporting=true --path-update=true --bash-completion=true --rc-path=/.bashrc --disable-installation-options
ENV PATH $CLOUD_SDK/bin:$PATH
-# Install a GitHub SSH service credential that gives access to the GitHub repo while it's private
-# TODO: remove this once the repo is public
-ADD .ssh .ssh
-RUN chmod 600 .ssh/github.rsa
-RUN mkdir -p $HOME/.ssh && echo 'Host github.com' > $HOME/.ssh/config
-RUN echo " IdentityFile /.ssh/github.rsa" >> $HOME/.ssh/config
-RUN echo 'StrictHostKeyChecking no' >> $HOME/.ssh/config
-
# Define the default command.
CMD ["bash"]