aboutsummaryrefslogtreecommitdiffhomepage
path: root/tools/dockerfile/test/python_alpine_x64
diff options
context:
space:
mode:
authorGravatar Matt Kwong <mattkwong@google.com>2017-05-17 16:51:50 -0700
committerGravatar Matt Kwong <mattkwong@google.com>2017-05-17 16:51:50 -0700
commit6bf7782ee12925b7baeb722082568999fc98fa7a (patch)
tree7a640b58290f5050a4e74fbe415fc1eed733811e /tools/dockerfile/test/python_alpine_x64
parent4de910df8b8e55267a6e4eaa30be2ec2303466bf (diff)
Add Python GCP API library installation to Alpine Dockerfiles
Diffstat (limited to 'tools/dockerfile/test/python_alpine_x64')
-rw-r--r--tools/dockerfile/test/python_alpine_x64/Dockerfile3
1 files changed, 3 insertions, 0 deletions
diff --git a/tools/dockerfile/test/python_alpine_x64/Dockerfile b/tools/dockerfile/test/python_alpine_x64/Dockerfile
index bdffbd3598..5d25ab0ebe 100644
--- a/tools/dockerfile/test/python_alpine_x64/Dockerfile
+++ b/tools/dockerfile/test/python_alpine_x64/Dockerfile
@@ -55,6 +55,9 @@ RUN pip install pip --upgrade
RUN pip install virtualenv
RUN pip install futures==2.2.0 enum34==1.0.4 protobuf==3.2.0 six==1.10.0
+# Google Cloud platform API libraries
+RUN pip install --upgrade google-api-python-client
+
# Prepare ccache
RUN ln -s /usr/bin/ccache /usr/local/bin/gcc
RUN ln -s /usr/bin/ccache /usr/local/bin/g++