-
Notifications
You must be signed in to change notification settings - Fork 64
/
docker_build_and_install_ngtf.sh
105 lines (90 loc) · 3.68 KB
/
docker_build_and_install_ngtf.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
#! /bin/bash
# ==============================================================================
# Copyright 2020 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.
# ==============================================================================
# Script environment variables:
#
# BASE_DOCKERFILE Dockerfile to use to build the base env container
# BASE_IMAGE_NAME Image name for the base env container
# BASE_IMAGE_TAG Image tag for the base env container
# NGTF_DOCKERFILE Dockerfile to use to build/install NGTF container
# NGTF_IMAGE_NAME Image name for the NGTF container
# NGTF_IMAGE_TAG Image tag for the NGTF container
# Set vars for the base image
BASE_DOCKERFILE='Dockerfile.ubuntu18.04'
BASE_IMAGE_NAME='ngraph-bridge'
BASE_IMAGE_TAG='devel'
# Set vars for the ngtf image
NGTF_DOCKERFILE='Dockerfile.ubuntu18.04.install'
NGTF_IMAGE_NAME='ngraph-bridge'
NGTF_IMAGE_TAG='ngtf'
NGTF_BUILD_OPTIONS=$1
echo "docker_build_and_install_ngtf is building the following:"
echo " Base Dockerfile: ${BASE_DOCKERFILE}"
echo " Base Image name/tag: ${BASE_IMAGE_NAME}:${BASE_IMAGE_TAG}"
echo " nGraph TF Dockerfile: ${NGTF_DOCKERFILE}"
echo " nGraph TF Image name/tag: ${NGTF_IMAGE_NAME}:${NGTF_IMAGE_TAG}"
echo " nGraph TF build options: ${NGTF_BUILD_OPTIONS}"
# If proxy settings are detected in the environment, make sure they are
# included on the docker-build command-line. This mirrors a similar system
# in the Makefile.
if [ ! -z "${http_proxy}" ] ; then
DOCKER_HTTP_PROXY="--build-arg http_proxy=${http_proxy}"
else
DOCKER_HTTP_PROXY=' '
fi
if [ ! -z "${https_proxy}" ] ; then
DOCKER_HTTPS_PROXY="--build-arg https_proxy=${https_proxy}"
else
DOCKER_HTTPS_PROXY=' '
fi
# Build base docker image to get the build environment for ngraph and TF
dbuild_cmd="docker build --rm=true \
${DOCKER_HTTP_PROXY} ${DOCKER_HTTPS_PROXY} \
-f=${BASE_DOCKERFILE} -t=${BASE_IMAGE_NAME}:${BASE_IMAGE_TAG} ."
echo "Docker build command for base image: ${dbuild_cmd}"
$dbuild_cmd
dbuild_result=$?
if [ $dbuild_result = 0 ] ; then
echo ' '
echo "Successfully created base docker image ${BASE_IMAGE_NAME}:${BASE_IMAGE_TAG}"
else
echo ' '
echo "Base docker image build reported an error (exit code ${dbuild_result})"
exit 1
fi
# Pass through any build options
if [ ! -z "${NGTF_BUILD_OPTIONS}" ] ; then
DOCKER_NGTF_BUILD_OPTIONS="--build-arg ngtf_build_options='${NGTF_BUILD_OPTIONS}'"
else
DOCKER_NGTF_BUILD_OPTIONS=' '
fi
# Use the base docker image to run the build_ngtf.py script and install ngraph and TF
dbuild_cmd="docker build --rm=true \
${DOCKER_HTTP_PROXY} ${DOCKER_HTTPS_PROXY} ${DOCKER_NGTF_BUILD_OPTIONS} \
--build-arg base_image=${BASE_IMAGE_NAME}:${BASE_IMAGE_TAG} \
-f=${NGTF_DOCKERFILE} -t=${NGTF_IMAGE_NAME}:${NGTF_IMAGE_TAG} ."
echo "Docker build command for nGraph TF image: ${dbuild_cmd}"
alias dbuild=$dbuild_cmd
dbuild
dbuild_result=$?
if [ $dbuild_result = 0 ] ; then
echo ' '
echo "Successfully created docker image with ngtf installed: ${NGTF_IMAGE_NAME}:${NGTF_IMAGE_TAG}"
else
echo ' '
echo "Docker image with ngtf build reported an error (exit code ${dbuild_result})"
exit 1
fi