aboutsummaryrefslogtreecommitdiffhomepage
path: root/tools/dockerfile/grpc_go
diff options
context:
space:
mode:
authorGravatar Donna Dionne <donnadionne@google.com>2015-02-23 15:03:28 -0800
committerGravatar Donna Dionne <donnadionne@google.com>2015-02-23 15:03:28 -0800
commita6d738414da675dda53c8dee82299b724f0d5fe4 (patch)
tree088175059f6c39a44b7b31c8508eea68cf25cc06 /tools/dockerfile/grpc_go
parent108e597533486a7a8c72a32f00cb1a1c605a3cf0 (diff)
Adding go auth tests
Adding python to images to be pulled after building
Diffstat (limited to 'tools/dockerfile/grpc_go')
-rw-r--r--tools/dockerfile/grpc_go/Dockerfile3
1 files changed, 3 insertions, 0 deletions
diff --git a/tools/dockerfile/grpc_go/Dockerfile b/tools/dockerfile/grpc_go/Dockerfile
index 94d962b448..e1671eaee1 100644
--- a/tools/dockerfile/grpc_go/Dockerfile
+++ b/tools/dockerfile/grpc_go/Dockerfile
@@ -48,6 +48,9 @@ RUN git config --global url."git@github.com:".insteadOf "https://github.com/"
# Get the source from GitHub
RUN go get google.golang.org/grpc
+# Add a service_account directory containing the auth creds file
+ADD service_account service_account
+
# Build the interop client and server
RUN cd src/google.golang.org/grpc/interop/client && go install
RUN cd src/google.golang.org/grpc/interop/server && go install