aboutsummaryrefslogtreecommitdiffhomepage
path: root/tools/dockerfile/stress_test/grpc_interop_stress_ruby
diff options
context:
space:
mode:
authorGravatar Craig Tiller <ctiller@google.com>2016-07-13 15:40:24 -0700
committerGravatar Craig Tiller <ctiller@google.com>2016-07-13 15:40:24 -0700
commit22ac0d17c13a02ef4400700f5fe1af43c78d4931 (patch)
tree5c45770eaedb68fdbe42b5e5f54ae47446f61402 /tools/dockerfile/stress_test/grpc_interop_stress_ruby
parentc8a8513d5911e99241ec0bb7b038d4344110cb41 (diff)
parent8da7b1f779b36394008aad5ef40f49b03ce79c7b (diff)
Merge branch 'delayed-write' into grand-unified-closures
Diffstat (limited to 'tools/dockerfile/stress_test/grpc_interop_stress_ruby')
-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++