Index: third_party/grpc/tools/dockerfile/distribtest/node_jessie_x64/Dockerfile |
diff --git a/third_party/WebKit/Tools/Scripts/print-layout-test-times b/third_party/grpc/tools/dockerfile/distribtest/node_jessie_x64/Dockerfile |
old mode 100755 |
new mode 100644 |
similarity index 86% |
copy from third_party/WebKit/Tools/Scripts/print-layout-test-times |
copy to third_party/grpc/tools/dockerfile/distribtest/node_jessie_x64/Dockerfile |
index 20019957724b7351a696c6c8c5830e881ed649ef..4ca5e86563b71c24e4b55b95151b3cdf6b8b87a9 |
--- a/third_party/WebKit/Tools/Scripts/print-layout-test-times |
+++ b/third_party/grpc/tools/dockerfile/distribtest/node_jessie_x64/Dockerfile |
@@ -1,6 +1,5 @@ |
-#!/usr/bin/python |
-# |
-# Copyright (C) 2013 Google Inc. All rights reserved. |
+# Copyright 2016, Google Inc. |
+# All rights reserved. |
# |
# Redistribution and use in source and binary forms, with or without |
# modification, are permitted provided that the following conditions are |
@@ -28,9 +27,10 @@ |
# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
-import sys |
+FROM debian:jessie |
-from webkitpy.common import host |
-from webkitpy.layout_tests import print_layout_test_times |
+RUN apt-get update && apt-get install -y curl |
-print_layout_test_times.main(host.Host(), sys.argv[1:]) |
+# Install nvm |
+RUN touch .profile |
+RUN curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.30.2/install.sh | bash |