aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNaresh Bhat <naresh.bhat@linaro.org>2017-07-21 21:52:40 +0530
committerNaresh Bhat <naresh.bhat@linaro.org>2017-07-26 17:03:27 +0530
commitf5c31c2e018138573e1195b2e72db60291c6b555 (patch)
tree96c9ba2c33be8b27e1fa8728a56c369a9bb9628b
parent5d015efb96e4a496114d0d655355c4a3c166a84a (diff)
BIGTOP-2852: Add Debian 8 aarch64 bigtop slaves
Add Debian 8 bigtop slave support for ARM64 architecture. Signed-off-by: Naresh Bhat <naresh.bhat@linaro.org>
-rw-r--r--docker/bigtop-slaves/debian-8-aarch64/Dockerfile23
1 files changed, 23 insertions, 0 deletions
diff --git a/docker/bigtop-slaves/debian-8-aarch64/Dockerfile b/docker/bigtop-slaves/debian-8-aarch64/Dockerfile
new file mode 100644
index 00000000..e21e06ed
--- /dev/null
+++ b/docker/bigtop-slaves/debian-8-aarch64/Dockerfile
@@ -0,0 +1,23 @@
+# 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 bigtop/puppet:debian-8-aarch64
+MAINTAINER naresh.bhat@linaro.org
+
+COPY bigtop_toolchain /etc/puppet/modules/bigtop_toolchain
+
+RUN apt-get clean && apt-get update && puppet apply -e "include bigtop_toolchain::installer"
+
+COPY . /tmp/bigtop
+RUN cd /tmp/bigtop && ./gradlew && cd && rm -rf /tmp/bigtop