You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@openwhisk.apache.org by dg...@apache.org on 2018/05/30 13:58:26 UTC

[incubator-openwhisk-deploy-kube] branch master updated: Add ASF license header to Dockerfiles per project convention. (#206)

This is an automated email from the ASF dual-hosted git repository.

dgrove pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-openwhisk-deploy-kube.git


The following commit(s) were added to refs/heads/master by this push:
     new 9148b28  Add ASF license header to Dockerfiles per project convention. (#206)
9148b28 is described below

commit 9148b28a1d0550e031bd77a0059bc2409dc79271
Author: Matt Rutkowski <mr...@us.ibm.com>
AuthorDate: Wed May 30 08:58:23 2018 -0500

    Add ASF license header to Dockerfiles per project convention. (#206)
---
 docker/couchdb/Dockerfile            | 17 +++++++++++++++++
 docker/docker-pull/Dockerfile        | 17 +++++++++++++++++
 docker/invoker-agent/Dockerfile      | 17 +++++++++++++++++
 docker/kafkapkg-installer/Dockerfile | 17 +++++++++++++++++
 docker/openwhisk-catalog/Dockerfile  | 17 +++++++++++++++++
 docker/routemgmt/Dockerfile          | 17 +++++++++++++++++
 6 files changed, 102 insertions(+)

diff --git a/docker/couchdb/Dockerfile b/docker/couchdb/Dockerfile
index 098ce1a..be643ca 100644
--- a/docker/couchdb/Dockerfile
+++ b/docker/couchdb/Dockerfile
@@ -1,3 +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 apache/couchdb:2.1
 
 ADD http://ftp.us.debian.org/debian/pool/main/a/apt/apt-transport-https_1.0.9.8.4_amd64.deb /tmp/apt-transport-https_1.0.9.8.4_amd64.deb
diff --git a/docker/docker-pull/Dockerfile b/docker/docker-pull/Dockerfile
index 294c311..ee136b1 100644
--- a/docker/docker-pull/Dockerfile
+++ b/docker/docker-pull/Dockerfile
@@ -1,3 +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:latest
 
 ENV DOCKER_VERSION 1.12.0
diff --git a/docker/invoker-agent/Dockerfile b/docker/invoker-agent/Dockerfile
index bee587e..000a54a 100644
--- a/docker/invoker-agent/Dockerfile
+++ b/docker/invoker-agent/Dockerfile
@@ -1,3 +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.
+#
+
 ######
 # build-stage
 ######
diff --git a/docker/kafkapkg-installer/Dockerfile b/docker/kafkapkg-installer/Dockerfile
index b1960db..4f53db8 100644
--- a/docker/kafkapkg-installer/Dockerfile
+++ b/docker/kafkapkg-installer/Dockerfile
@@ -1,3 +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:latest
 
 RUN apt-get -y update && apt-get -y install \
diff --git a/docker/openwhisk-catalog/Dockerfile b/docker/openwhisk-catalog/Dockerfile
index 984e2d0..4a1a749 100644
--- a/docker/openwhisk-catalog/Dockerfile
+++ b/docker/openwhisk-catalog/Dockerfile
@@ -1,3 +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:latest
 
 RUN apt-get -y update && apt-get -y install \
diff --git a/docker/routemgmt/Dockerfile b/docker/routemgmt/Dockerfile
index 2c79510..ee36d20 100644
--- a/docker/routemgmt/Dockerfile
+++ b/docker/routemgmt/Dockerfile
@@ -1,3 +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:latest
 
 RUN apt-get -y update && apt-get -y install \

-- 
To stop receiving notification emails like this one, please contact
dgrove@apache.org.