aboutsummaryrefslogtreecommitdiffhomepage
path: root/tools
diff options
context:
space:
mode:
authorGravatar Donna Dionne <donnadionne@google.com>2015-04-10 15:24:49 -0700
committerGravatar Donna Dionne <donnadionne@google.com>2015-04-10 15:24:49 -0700
commite8382dedbeb69688224ebc07f00970afbde44137 (patch)
tree06ab24308b8203fbd3ac2aade44432b8039440de /tools
parent58873837707aa08e7983618fd5e8f08798f76989 (diff)
Also fixing docker file to ensure service account is copied.
Diffstat (limited to 'tools')
-rw-r--r--tools/dockerfile/grpc_python/Dockerfile3
1 files changed, 3 insertions, 0 deletions
diff --git a/tools/dockerfile/grpc_python/Dockerfile b/tools/dockerfile/grpc_python/Dockerfile
index 62ef785a31..aa29685bee 100644
--- a/tools/dockerfile/grpc_python/Dockerfile
+++ b/tools/dockerfile/grpc_python/Dockerfile
@@ -66,5 +66,8 @@ RUN cd /var/local/git/grpc \
# Add a cacerts directory containing the Google root pem file, allowing the interop client to access the production test instance
ADD cacerts cacerts
+# Add a service_account directory containing the auth creds file
+ADD service_account service_account
+
# Specify the default command such that the interop server runs on its known testing port
CMD ["/bin/bash", "-l", "-c", "python2.7 -m interop.server --use_tls --port 8050"]