aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authornareshbhat <nareshbhat@debian.nbhat>2017-07-21 20:36:33 +0530
committerNaresh Bhat <naresh.bhat@linaro.org>2017-07-24 19:12:19 +0530
commitb23135f60299ad95a8c1b69dcd472c4fe13b6802 (patch)
treed46034ef8a682e2e0d97e80bfcaf3fa692ebe5b3
parent2229094b3833a8b5c1c8833da08662e5b245c326 (diff)
BIGTOP-2851: Add debian 8 aarch64 bigtop puppet
Add Debian 8 bigtop-puppet for AArch64 architecture. Signed-off-by: Naresh Bhat <naresh.bhat@linaro.org>
-rw-r--r--docker/bigtop-puppet/debian-8-aarch64/Dockerfile20
-rwxr-xr-xdocker/bigtop-puppet/debian-8-aarch64/build.sh16
2 files changed, 36 insertions, 0 deletions
diff --git a/docker/bigtop-puppet/debian-8-aarch64/Dockerfile b/docker/bigtop-puppet/debian-8-aarch64/Dockerfile
new file mode 100644
index 00000000..f31781d9
--- /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 naresh.bhat@linaro.org
+
+COPY puppetize.sh /tmp/puppetize.sh
+
+RUN bash /tmp/puppetize.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 00000000..67ed45cf
--- /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 .