Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
N
ngraph
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
ngraph
Commits
08a574e8
Commit
08a574e8
authored
Mar 15, 2018
by
DawnStone
Committed by
Scott Cyphers
Mar 15, 2018
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
added Intel copyright to contrib/docker files (#653)
parent
790ca60f
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
134 additions
and
0 deletions
+134
-0
Dockerfile.ngraph
contrib/docker/Dockerfile.ngraph
+16
-0
Dockerfile.ngraph.centos74_cmake3
contrib/docker/Dockerfile.ngraph.centos74_cmake3
+16
-0
Dockerfile.ngraph.ubuntu1604
contrib/docker/Dockerfile.ngraph.ubuntu1604
+16
-0
Makefile
contrib/docker/Makefile
+16
-0
docker_cleanup.sh
contrib/docker/docker_cleanup.sh
+16
-0
run_as_centos_user.sh
contrib/docker/run_as_centos_user.sh
+18
-0
run_as_ubuntu_user.sh
contrib/docker/run_as_ubuntu_user.sh
+18
-0
run_as_user.sh
contrib/docker/run_as_user.sh
+18
-0
No files found.
contrib/docker/Dockerfile.ngraph
View file @
08a574e8
# ******************************************************************************
# 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
FROM ubuntu:16.04
...
...
contrib/docker/Dockerfile.ngraph.centos74_cmake3
View file @
08a574e8
# ******************************************************************************
# 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
# with gcc 4.8.5
# with python 2.7
...
...
contrib/docker/Dockerfile.ngraph.ubuntu1604
View file @
08a574e8
# ******************************************************************************
# 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
FROM ubuntu:16.04
...
...
contrib/docker/Makefile
View file @
08a574e8
# ******************************************************************************
# 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
# are added.
...
...
contrib/docker/docker_cleanup.sh
View file @
08a574e8
#!/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
echo
"Active docker containers..."
docker ps
-a
...
...
contrib/docker/run_as_centos_user.sh
View file @
08a574e8
#! /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
# within a docker container.
#
...
...
@@ -21,6 +38,7 @@
# 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
# interactive shell in the docker container, for debugging.
# ******************************************************************************
set
-e
# Make sure we exit on any command that returns non-zero
set
-u
# No unset variables
...
...
contrib/docker/run_as_ubuntu_user.sh
View file @
08a574e8
#! /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
# within a docker container.
#
...
...
@@ -21,6 +38,7 @@
# 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
# interactive shell in the docker container, for debugging.
# ******************************************************************************
set
-e
# Make sure we exit on any command that returns non-zero
set
-u
# No unset variables
...
...
contrib/docker/run_as_user.sh
View file @
08a574e8
#! /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
# within a docker container.
#
...
...
@@ -21,6 +38,7 @@
# 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
# interactive shell in the docker container, for debugging.
# ******************************************************************************
set
-e
# Make sure we exit on any command that returns non-zero
set
-u
# No unset variables
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment