aboutsummaryrefslogtreecommitdiffhomepage
path: root/tools/dockerfile/stress_test/grpc_interop_stress_ruby/Dockerfile
diff options
context:
space:
mode:
authorGravatar Mark D. Roth <roth@google.com>2016-07-14 13:58:42 -0700
committerGravatar Mark D. Roth <roth@google.com>2016-07-14 13:58:42 -0700
commitef31ba1e03ad55b0c46b5dd8b5ed38eec555412b (patch)
treeb9d4138c26b66621a003ee7552af01ee8e5d237e /tools/dockerfile/stress_test/grpc_interop_stress_ruby/Dockerfile
parentdba5d2708c6d59a73b65d378440dc64b3af2b873 (diff)
parent1198da0b5c95b8444e4f282349f5d1f47db76525 (diff)
Merge remote-tracking branch 'upstream/master' into handshake_api
Diffstat (limited to 'tools/dockerfile/stress_test/grpc_interop_stress_ruby/Dockerfile')
-rw-r--r--tools/dockerfile/stress_test/grpc_interop_stress_ruby/Dockerfile15
1 files changed, 15 insertions, 0 deletions
diff --git a/tools/dockerfile/stress_test/grpc_interop_stress_ruby/Dockerfile b/tools/dockerfile/stress_test/grpc_interop_stress_ruby/Dockerfile
index 36b54ddafe..f459153fe5 100644
--- a/tools/dockerfile/stress_test/grpc_interop_stress_ruby/Dockerfile
+++ b/tools/dockerfile/stress_test/grpc_interop_stress_ruby/Dockerfile
@@ -63,6 +63,21 @@ RUN apt-get update && apt-get install -y \
# Build profiling
RUN apt-get update && apt-get install -y time && apt-get clean
+#====================
+# Python dependencies
+
+# Install dependencies
+
+RUN apt-get update && apt-get install -y \
+ python-all-dev \
+ python3-all-dev \
+ python-pip
+
+# Install Python packages from PyPI
+RUN pip install pip --upgrade
+RUN pip install virtualenv
+RUN pip install futures==2.2.0 enum34==1.0.4 protobuf==3.0.0a2 six==1.10.0
+
# Prepare ccache
RUN ln -s /usr/bin/ccache /usr/local/bin/gcc
RUN ln -s /usr/bin/ccache /usr/local/bin/g++