Github user c0s commented on a diff in the pull request: https://github.com/apache/bigtop/pull/310#discussion_r157172119 --- Diff: build.gradle --- @@ -425,6 +425,24 @@ task "bigtop-slaves"(type:Exec, commandLine command } +task "docker-package"(type:Exec, + description: 'Build packages via docker build.\n' + + 'Usage:\n $ ./gradlew -POS=[centos-7|fedora-26|debian-9|ubuntu-16.04|opensuse-42.3] -Pprefix=TAG_PREFIX -Ptarget=GRADLE_TARGET docker-package\n' + + 'Example:\n $ ./gradlew -POS=debian-9 -Pprefix=1.2.1 -Ptarget=tez-pkg docker-package\n' + --- End diff -- I presume "ind" stands for "in docker"? Sounds good to me! As for the docker per-requisite: perhaps we can run a sanity check (i.e. an exec and check the exit status) for docker and issue the error message if one isn't available. Thanks!
---