| Index: third_party/grpc/tools/dockerfile/distribtest/node_ubuntu1510_x64/Dockerfile
|
| diff --git a/third_party/WebKit/Tools/Scripts/print-layout-test-times b/third_party/grpc/tools/dockerfile/distribtest/node_ubuntu1510_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_ubuntu1510_x64/Dockerfile
|
| index 20019957724b7351a696c6c8c5830e881ed649ef..c050cab7d3358bfbb264b6a028b21201d7816c46
|
| --- a/third_party/WebKit/Tools/Scripts/print-layout-test-times
|
| +++ b/third_party/grpc/tools/dockerfile/distribtest/node_ubuntu1510_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 ubuntu:15.10
|
|
|
| -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
|
|
|