Repository: bigtop Updated Branches: refs/heads/master d45b0ff8d -> c5ca11584
BIGTOP-2851: Add debian 8 aarch64 bigtop puppet Add Debian 8 bigtop-puppet for AArch64 architecture. Signed-off-by: Konstantin Boudnik <[email protected]> Project: http://git-wip-us.apache.org/repos/asf/bigtop/repo Commit: http://git-wip-us.apache.org/repos/asf/bigtop/commit/c5ca1158 Tree: http://git-wip-us.apache.org/repos/asf/bigtop/tree/c5ca1158 Diff: http://git-wip-us.apache.org/repos/asf/bigtop/diff/c5ca1158 Branch: refs/heads/master Commit: c5ca11584f8235e181bc6613d6f36ef50b4b89ea Parents: d45b0ff Author: nareshbhat <[email protected]> Authored: Fri Jul 21 20:36:33 2017 +0530 Committer: Konstantin Boudnik <[email protected]> Committed: Sun Jul 23 12:58:34 2017 -0700 ---------------------------------------------------------------------- .../bigtop-puppet/debian-8-aarch64/Dockerfile | 20 ++++++++++++++++++++ docker/bigtop-puppet/debian-8-aarch64/build.sh | 16 ++++++++++++++++ 2 files changed, 36 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/bigtop/blob/c5ca1158/docker/bigtop-puppet/debian-8-aarch64/Dockerfile ---------------------------------------------------------------------- diff --git a/docker/bigtop-puppet/debian-8-aarch64/Dockerfile b/docker/bigtop-puppet/debian-8-aarch64/Dockerfile new file mode 100644 index 0000000..f31781d --- /dev/null +++ b/docker/bigtop-puppet/debian-8-aarch64/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 aarch64/debian:jessie +MAINTAINER [email protected] + +COPY puppetize.sh /tmp/puppetize.sh + +RUN bash /tmp/puppetize.sh http://git-wip-us.apache.org/repos/asf/bigtop/blob/c5ca1158/docker/bigtop-puppet/debian-8-aarch64/build.sh ---------------------------------------------------------------------- diff --git a/docker/bigtop-puppet/debian-8-aarch64/build.sh b/docker/bigtop-puppet/debian-8-aarch64/build.sh new file mode 100755 index 0000000..67ed45c --- /dev/null +++ b/docker/bigtop-puppet/debian-8-aarch64/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 --pull=true -t bigtop/puppet:debian-8-aarch64 .
