From 4d5200f99a2824ff91357328d88395f76f6649f2 Mon Sep 17 00:00:00 2001 From: Matt Kwong Date: Tue, 8 May 2018 14:16:44 -0700 Subject: Install pip for Python3.4 in all Dockerfiles used for Python testing --- .../dockerfile/interoptest/grpc_interop_python/Dockerfile.template | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'templates/tools/dockerfile/interoptest/grpc_interop_python') diff --git a/templates/tools/dockerfile/interoptest/grpc_interop_python/Dockerfile.template b/templates/tools/dockerfile/interoptest/grpc_interop_python/Dockerfile.template index f5a53f045f..bf28796de3 100644 --- a/templates/tools/dockerfile/interoptest/grpc_interop_python/Dockerfile.template +++ b/templates/tools/dockerfile/interoptest/grpc_interop_python/Dockerfile.template @@ -18,6 +18,10 @@ <%include file="../../apt_get_basic.include"/> <%include file="../../python_deps.include"/> + # Install pip and virtualenv for Python 3.4 + RUN curl https://bootstrap.pypa.io/get-pip.py | python3.4 + RUN python3.4 -m pip install virtualenv + <%include file="../../run_tests_addons.include"/> # Define the default command. CMD ["bash"] -- cgit v1.2.3