Repository: mesos
Updated Branches:
  refs/heads/1.5.x b82d550f5 -> 547f5ec9a


Install ping for docker build.

By default the Ubuntu docker image does not contain `ping`.
We need to manually install it with `iputils-ping`.

Refs: https://stackoverflow.com/a/39901446/1387612

Review: https://reviews.apache.org/r/65569/


Project: http://git-wip-us.apache.org/repos/asf/mesos/repo
Commit: http://git-wip-us.apache.org/repos/asf/mesos/commit/547f5ec9
Tree: http://git-wip-us.apache.org/repos/asf/mesos/tree/547f5ec9
Diff: http://git-wip-us.apache.org/repos/asf/mesos/diff/547f5ec9

Branch: refs/heads/1.5.x
Commit: 547f5ec9a510a74cd18a8af26884d268e9893982
Parents: b82d550
Author: Tomasz Janiszewski <jani...@gmail.com>
Authored: Mon Feb 12 08:54:19 2018 -0800
Committer: Michael Park <mp...@apache.org>
Committed: Mon Feb 12 17:01:11 2018 -0800

----------------------------------------------------------------------
 support/docker-build.sh | 2 ++
 1 file changed, 2 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/mesos/blob/547f5ec9/support/docker-build.sh
----------------------------------------------------------------------
diff --git a/support/docker-build.sh b/support/docker-build.sh
index 9d69fb5..c78c7f5 100755
--- a/support/docker-build.sh
+++ b/support/docker-build.sh
@@ -71,6 +71,8 @@ case $OS in
       *16.04*)
         echo "Install Ubuntu 16.04 LTS (Xenial Xerus) specific packages"
         append_dockerfile "RUN apt-get install -y openjdk-8-jdk zlib1g-dev"
+        # Install ping required by OsTest.Which
+        append_dockerfile "RUN apt-get install -y iputils-ping"
        ;;
       *)
         append_dockerfile "RUN apt-get install -y openjdk-7-jdk"

Reply via email to