forked from adoptium/containers
-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathbuild.sh
executable file
·77 lines (70 loc) · 2.93 KB
/
build.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
#!/bin/bash
#
# (C) Copyright IBM Corporation 2023
#
# 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 to build a docker image #
# #
# #
# Usage : build.sh <Image name> <Dockerfile location> #
# #
#####################################################################################
image=$1
dloc=$2
dockerFile="Dockerfile.open.releases.full"
dfile=$dloc$dockerFile
containerEngine=docker
criu_secrets=$3
tag=`echo $image | cut -d ":" -f2`
if [ $# -lt 3 ]
then
if [ $# == 1 ]
then
echo "Dockerfile location not provided, using \".\". No artifactory token provided, using \"\""
dloc="."
criu_secrets=""
else
if [ $# == 2 ]
then
echo "No CRIU secrets file provided using \"\""
criu_secrets=""
else
echo "Usage : build.sh <Image name> <Dockerfile location> <criu_secrets_file>"
exit 1
fi
fi
fi
echo "******************************************************************************"
echo " Starting docker build for $image "
echo "******************************************************************************"
if [[ $VAR == *"17-ea"* ]]; then
containerEngine=podman
fi
$containerEngine build --no-cache --pull -t $image -f $dfile $dloc --secret id=criu_secrets,src=$criu_secrets 2>&1 | tee build_$tag.log
if [ $? = 0 ]
then
echo "******************************************************************************"
echo " SUCCESS: $image built successfully "
echo "******************************************************************************"
else
echo "******************************************************************************"
echo " FAILURE: $image build failed "
echo " LOGS: "
echo
tail -50 build_$tag.log | sed -e 's,^, ,'
echo "******************************************************************************"
exit 1
fi