aboutsummaryrefslogtreecommitdiffhomepage
path: root/tools/dockerfile/test/python_stretch_35_x64/Dockerfile
diff options
context:
space:
mode:
Diffstat (limited to 'tools/dockerfile/test/python_stretch_35_x64/Dockerfile')
-rw-r--r--tools/dockerfile/test/python_stretch_35_x64/Dockerfile9
1 files changed, 5 insertions, 4 deletions
diff --git a/tools/dockerfile/test/python_stretch_35_x64/Dockerfile b/tools/dockerfile/test/python_stretch_35_x64/Dockerfile
index fa4d3b820f..a42e3bf172 100644
--- a/tools/dockerfile/test/python_stretch_35_x64/Dockerfile
+++ b/tools/dockerfile/test/python_stretch_35_x64/Dockerfile
@@ -1,4 +1,4 @@
-# Copyright 2018 gRPC authors.
+# Copyright 2018 The gRPC authors
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
@@ -53,10 +53,11 @@ RUN apt-get update && apt-get install -y time && apt-get clean
RUN apt-get update && apt-get install -y python-pip && apt-get clean
RUN pip install --upgrade google-api-python-client oauth2client
-
-RUN apt-get update && apt-get install -y python2.7 python3.5 python-all-dev python3-all-dev
-
+# Install Python 2.7
+RUN apt-get update && apt-get install -y python2.7 python-all-dev
RUN curl https://bootstrap.pypa.io/get-pip.py | python2.7
+
+RUN apt-get update && apt-get install -y python3.5 python3-all-dev
RUN curl https://bootstrap.pypa.io/get-pip.py | python3.5