Index: third_party/grpc/tools/dockerfile/test/cxx_jessie_x64/Dockerfile |
diff --git a/third_party/WebKit/LayoutTests/http/tests/websocket/workers/resources/echo_wsh.py b/third_party/grpc/tools/dockerfile/test/cxx_jessie_x64/Dockerfile |
similarity index 55% |
copy from third_party/WebKit/LayoutTests/http/tests/websocket/workers/resources/echo_wsh.py |
copy to third_party/grpc/tools/dockerfile/test/cxx_jessie_x64/Dockerfile |
index 429f58186e3fce43dc21e81e0f9d7e20c7e0bf70..e3ed39dfe6c09901081d7f1ab345e4e87ca43b37 100644 |
--- a/third_party/WebKit/LayoutTests/http/tests/websocket/workers/resources/echo_wsh.py |
+++ b/third_party/grpc/tools/dockerfile/test/cxx_jessie_x64/Dockerfile |
@@ -1,4 +1,4 @@ |
-# Copyright 2010, Google Inc. |
+# Copyright 2015-2016, Google Inc. |
# All rights reserved. |
# |
# Redistribution and use in source and binary forms, with or without |
@@ -27,20 +27,60 @@ |
# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
+FROM debian:jessie |
-from mod_pywebsocket import msgutil |
+# Install Git and basic packages. |
+RUN apt-get update && apt-get install -y \ |
+ autoconf \ |
+ autotools-dev \ |
+ build-essential \ |
+ bzip2 \ |
+ ccache \ |
+ curl \ |
+ gcc \ |
+ gcc-multilib \ |
+ git \ |
+ golang \ |
+ gyp \ |
+ lcov \ |
+ libc6 \ |
+ libc6-dbg \ |
+ libc6-dev \ |
+ libgtest-dev \ |
+ libtool \ |
+ make \ |
+ perl \ |
+ strace \ |
+ python-dev \ |
+ python-setuptools \ |
+ python-yaml \ |
+ telnet \ |
+ unzip \ |
+ wget \ |
+ zip && apt-get clean |
+#================ |
+# Build profiling |
+RUN apt-get update && apt-get install -y time && apt-get clean |
-_GOODBYE_MESSAGE = 'Goodbye' |
+#================= |
+# C++ dependencies |
+RUN apt-get update && apt-get -y install libgflags-dev libgtest-dev libc++-dev clang && apt-get clean |
+# Prepare ccache |
+RUN ln -s /usr/bin/ccache /usr/local/bin/gcc |
+RUN ln -s /usr/bin/ccache /usr/local/bin/g++ |
+RUN ln -s /usr/bin/ccache /usr/local/bin/cc |
+RUN ln -s /usr/bin/ccache /usr/local/bin/c++ |
+RUN ln -s /usr/bin/ccache /usr/local/bin/clang |
+RUN ln -s /usr/bin/ccache /usr/local/bin/clang++ |
-def web_socket_do_extra_handshake(request): |
- pass # Always accept. |
+#====================== |
+# Zookeeper dependencies |
+# TODO(jtattermusch): is zookeeper still needed? |
+RUN apt-get install -y libzookeeper-mt-dev |
+RUN mkdir /var/local/jenkins |
-def web_socket_transfer_data(request): |
- while True: |
- line = msgutil.receive_message(request) |
- msgutil.send_message(request, line) |
- if line == _GOODBYE_MESSAGE: |
- return |
+# Define the default command. |
+CMD ["bash"] |