You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@bigtop.apache.org by of...@apache.org on 2016/02/20 17:23:57 UTC

bigtop git commit: BIGTOP-2264: adding dockerfile for bigtop/puppet for x86_64 platform

Repository: bigtop
Updated Branches:
  refs/heads/master ae9e16340 -> 804ed468c


BIGTOP-2264: adding dockerfile for bigtop/puppet for x86_64 platform

Signed-off-by: Olaf Flebbe <of...@ofleb.be>


Project: http://git-wip-us.apache.org/repos/asf/bigtop/repo
Commit: http://git-wip-us.apache.org/repos/asf/bigtop/commit/804ed468
Tree: http://git-wip-us.apache.org/repos/asf/bigtop/tree/804ed468
Diff: http://git-wip-us.apache.org/repos/asf/bigtop/diff/804ed468

Branch: refs/heads/master
Commit: 804ed468cc2d683548050d842a47ce1db9bc8ce4
Parents: ae9e163
Author: Amir Sanjar <af...@gmail.com>
Authored: Fri Feb 19 17:30:46 2016 -0600
Committer: Olaf Flebbe <of...@ofleb.be>
Committed: Sat Feb 20 17:22:10 2016 +0100

----------------------------------------------------------------------
 docker/bigtop-puppet/ubuntu-15.04/Dockerfile | 20 ++++++++++++++++++++
 docker/bigtop-puppet/ubuntu-15.04/build.sh   | 16 ++++++++++++++++
 2 files changed, 36 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/bigtop/blob/804ed468/docker/bigtop-puppet/ubuntu-15.04/Dockerfile
----------------------------------------------------------------------
diff --git a/docker/bigtop-puppet/ubuntu-15.04/Dockerfile b/docker/bigtop-puppet/ubuntu-15.04/Dockerfile
new file mode 100644
index 0000000..5ac6c75
--- /dev/null
+++ b/docker/bigtop-puppet/ubuntu-15.04/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 ubuntu:15.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/804ed468/docker/bigtop-puppet/ubuntu-15.04/build.sh
----------------------------------------------------------------------
diff --git a/docker/bigtop-puppet/ubuntu-15.04/build.sh b/docker/bigtop-puppet/ubuntu-15.04/build.sh
new file mode 100755
index 0000000..ea239fc
--- /dev/null
+++ b/docker/bigtop-puppet/ubuntu-15.04/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-15.04 .