Commit 08a574e8 authored by DawnStone's avatar DawnStone Committed by Scott Cyphers

added Intel copyright to contrib/docker files (#653)

parent 790ca60f
# ******************************************************************************
# Copyright 2017-2018 Intel Corporation
#
# Licensed 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.
# ******************************************************************************
# Environment to build and unit-test ngraph # Environment to build and unit-test ngraph
FROM ubuntu:16.04 FROM ubuntu:16.04
......
# ******************************************************************************
# Copyright 2017-2018 Intel Corporation
#
# Licensed 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.
# ******************************************************************************
# Environment to build and unit-test ngraph on centos74 # Environment to build and unit-test ngraph on centos74
# with gcc 4.8.5 # with gcc 4.8.5
# with python 2.7 # with python 2.7
......
# ******************************************************************************
# Copyright 2017-2018 Intel Corporation
#
# Licensed 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.
# ******************************************************************************
# Environment to build and unit-test ngraph # Environment to build and unit-test ngraph
FROM ubuntu:16.04 FROM ubuntu:16.04
......
# ******************************************************************************
# Copyright 2017-2018 Intel Corporation
#
# Licensed 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.
# ******************************************************************************
# Basic Makefile for contrib/docker. This can be expanded later as more targets # Basic Makefile for contrib/docker. This can be expanded later as more targets
# are added. # are added.
......
#!/bin/bash #!/bin/bash
# ******************************************************************************
# Copyright 2017-2018 Intel Corporation
#
# Licensed 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.
# ******************************************************************************
# list active docker containers # list active docker containers
echo "Active docker containers..." echo "Active docker containers..."
docker ps -a docker ps -a
......
#! /bin/bash #! /bin/bash
# ******************************************************************************
# Copyright 2017-2018 Intel Corporation
#
# Licensed 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.
# ******************************************************************************
# ******************************************************************************
# This script is designed to simulate running as a user with a particular UID # This script is designed to simulate running as a user with a particular UID
# within a docker container. # within a docker container.
# #
...@@ -21,6 +38,7 @@ ...@@ -21,6 +38,7 @@
# this script will use RUN_CMD as a command to run when su'ing. If RUN_CMD is # this script will use RUN_CMD as a command to run when su'ing. If RUN_CMD is
# not defined, then /bin/bash will run, which effectively provides an # not defined, then /bin/bash will run, which effectively provides an
# interactive shell in the docker container, for debugging. # interactive shell in the docker container, for debugging.
# ******************************************************************************
set -e # Make sure we exit on any command that returns non-zero set -e # Make sure we exit on any command that returns non-zero
set -u # No unset variables set -u # No unset variables
......
#! /bin/bash #! /bin/bash
# ******************************************************************************
# Copyright 2017-2018 Intel Corporation
#
# Licensed 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.
# ******************************************************************************
# ******************************************************************************
# This script is designed to simulate running as a user with a particular UID # This script is designed to simulate running as a user with a particular UID
# within a docker container. # within a docker container.
# #
...@@ -21,6 +38,7 @@ ...@@ -21,6 +38,7 @@
# this script will use RUN_CMD as a command to run when su'ing. If RUN_CMD is # this script will use RUN_CMD as a command to run when su'ing. If RUN_CMD is
# not defined, then /bin/bash will run, which effectively provides an # not defined, then /bin/bash will run, which effectively provides an
# interactive shell in the docker container, for debugging. # interactive shell in the docker container, for debugging.
# ******************************************************************************
set -e # Make sure we exit on any command that returns non-zero set -e # Make sure we exit on any command that returns non-zero
set -u # No unset variables set -u # No unset variables
......
#! /bin/bash #! /bin/bash
# ******************************************************************************
# Copyright 2017-2018 Intel Corporation
#
# Licensed 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.
# ******************************************************************************
# ******************************************************************************
# This script is designed to simulate running as a user with a particular UID # This script is designed to simulate running as a user with a particular UID
# within a docker container. # within a docker container.
# #
...@@ -21,6 +38,7 @@ ...@@ -21,6 +38,7 @@
# this script will use RUN_CMD as a command to run when su'ing. If RUN_CMD is # this script will use RUN_CMD as a command to run when su'ing. If RUN_CMD is
# not defined, then /bin/bash will run, which effectively provides an # not defined, then /bin/bash will run, which effectively provides an
# interactive shell in the docker container, for debugging. # interactive shell in the docker container, for debugging.
# ******************************************************************************
set -e # Make sure we exit on any command that returns non-zero set -e # Make sure we exit on any command that returns non-zero
set -u # No unset variables set -u # No unset variables
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment