Repository: bigtop Updated Branches: refs/heads/master f0cc1e306 -> a162776b4
Adding support for building bigtop/puppet docker image on Ubuntu-14.04 for ppc64le arch Signed-off-by: Olaf Flebbe <[email protected]> Project: http://git-wip-us.apache.org/repos/asf/bigtop/repo Commit: http://git-wip-us.apache.org/repos/asf/bigtop/commit/a162776b Tree: http://git-wip-us.apache.org/repos/asf/bigtop/tree/a162776b Diff: http://git-wip-us.apache.org/repos/asf/bigtop/diff/a162776b Branch: refs/heads/master Commit: a162776b4f63a6a80c6dbc85558a9e9048942432 Parents: f0cc1e3 Author: amir sanjar <[email protected]> Authored: Thu Dec 24 15:55:06 2015 +0000 Committer: Olaf Flebbe <[email protected]> Committed: Thu Dec 24 18:32:53 2015 +0100 ---------------------------------------------------------------------- .../ubuntu-14.04-ppc64le/Dockerfile | 20 ++++++++++++++++++++ .../bigtop-puppet/ubuntu-14.04-ppc64le/build.sh | 16 ++++++++++++++++ 2 files changed, 36 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/bigtop/blob/a162776b/docker/bigtop-puppet/ubuntu-14.04-ppc64le/Dockerfile ---------------------------------------------------------------------- diff --git a/docker/bigtop-puppet/ubuntu-14.04-ppc64le/Dockerfile b/docker/bigtop-puppet/ubuntu-14.04-ppc64le/Dockerfile new file mode 100755 index 0000000..7f6dd42 --- /dev/null +++ b/docker/bigtop-puppet/ubuntu-14.04-ppc64le/Dockerfile @@ -0,0 +1,20 @@ +# Licensed to the Apache Software Foundation (ASF) under one or more +# contributor license agreements. See the NOTICE file distributed with +# this work for additional information regarding copyright ownership. +# The ASF licenses this file to You under the Apache License, Version 2.0 +# (the "License"); you may not use this file except in compliance with +# the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +FROM ppc64le/ubuntu:14.04 +MAINTAINER Amir Sanjar + +COPY puppetize.sh /tmp/puppetize.sh + +RUN bash /tmp/puppetize.sh http://git-wip-us.apache.org/repos/asf/bigtop/blob/a162776b/docker/bigtop-puppet/ubuntu-14.04-ppc64le/build.sh ---------------------------------------------------------------------- diff --git a/docker/bigtop-puppet/ubuntu-14.04-ppc64le/build.sh b/docker/bigtop-puppet/ubuntu-14.04-ppc64le/build.sh new file mode 100755 index 0000000..5a3c999 --- /dev/null +++ b/docker/bigtop-puppet/ubuntu-14.04-ppc64le/build.sh @@ -0,0 +1,16 @@ +# Licensed to the Apache Software Foundation (ASF) under one or more +# contributor license agreements. See the NOTICE file distributed with +# this work for additional information regarding copyright ownership. +# The ASF licenses this file to You under the Apache License, Version 2.0 +# (the "License"); you may not use this file except in compliance with +# the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +cp ../../../bigtop_toolchain/bin/puppetize.sh . +docker build -t bigtop/puppet:ubuntu-14.04-ppc64le .
