-
Notifications
You must be signed in to change notification settings - Fork 37
/
buildContainerImage.sh
executable file
·175 lines (149 loc) · 4.94 KB
/
buildContainerImage.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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
#!/bin/bash
#
# Since: April, 2023
# Author: gvenzl
# Name: buildContainerImage.sh
# Description: Build a Container image for Oracle Database Free
#
# Copyright 2023 Gerald Venzl
#
# 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.
# Exit on errors
# Great explanation on https://vaneyckt.io/posts/safer_bash_scripts_with_set_euxo_pipefail/
set -Eeuo pipefail
VERSION="23.5"
IMAGE_FLAVOR="REGULAR"
IMAGE_NAME="gvenzl/oracle-free"
SKIP_CHECKSUM="false"
FASTSTART="false"
BASE_IMAGE=""
DB_FLAVOR="ai"
BUILDER_ARCH=$(uname -m)
function usage() {
cat << EOF
Usage: buildContainerImage.sh [-f | -r | -s] [-x] [-v version] [-i] [-o] [container build option]
Builds a container image for Oracle Database Free.
Parameters:
-f: creates a 'full' image
-r: creates a regular image (default)
-s: creates a 'slim' image
-x: creates a 'faststart' image
-v: version of Oracle Database Free to build
Choose one of: 23.5, 23.4, 23.3, 23.2
-i: ignores checksum test
-o: passes on container build option
* select only one image flavor: -f, -r, or -s
Apache License, Version 2.0
Copyright (c) 2024 Gerald Venzl
EOF
}
while getopts "hfnsv:io:x" optname; do
case "${optname}" in
"h")
usage
exit 0;
;;
"v")
VERSION="${OPTARG}"
# 23.2 and 23.3 are called 23c not 23ai
if [[ ("${VERSION}" == "23.2") || ("${VERSION}" == "23.3") ]]; then
DB_FLAVOR="c"
fi;
;;
"f")
IMAGE_FLAVOR="FULL"
;;
"r")
IMAGE_FLAVOR="REGULAR"
;;
"s")
IMAGE_FLAVOR="SLIM"
;;
"i")
SKIP_CHECKSUM="true"
;;
"o")
eval "BUILD_OPTS=(${OPTARG})"
;;
"x")
FASTSTART="true"
;;
"?")
usage;
exit 1;
;;
*)
# Should not occur
echo "Unknown error while processing options inside buildContainerImage.sh"
;;
esac;
done;
# Checking SHASUM
if [ "${SKIP_CHECKSUM}" == "false" ]; then
echo "BUILDER: verifying checksum of rpm file - please wait..."
SHASUM_RET=$(sha256sum oracle*free*"${VERSION}"*.rpm)
if [[ ( "${VERSION}" == "23.2" && "${SHASUM_RET%% *}" != "63b6c0ec9464682cfd9814e7e2a5d533139e5c6aeb9d3e7997a5f976d6677ca6" ) ||
( "${VERSION}" == "23.3" && "${SHASUM_RET%% *}" != "1319bcd7cb706cb727501cbd98abf3f3980a4fdabeb613a1abffc756925c7374" ) ||
( "${VERSION}" == "23.4" && "${SHASUM_RET%% *}" != "e6cccec7f101325c233f374c2aa86f77d62123edd3125450d79404c3eec30b65" ) ||
( "${VERSION}" == "23.5" && "${BUILDER_ARCH}" == "x86_64" && "${SHASUM_RET%% *}" != "80c1ceae3b158cffe71fa4cfa8e4f540161659f79f777bcf48935f79031c054c" ) ||
( "${VERSION}" == "23.5" &&
( "${BUILDER_ARCH}" == "aarch64" || "${BUILDER_ARCH}" == "arm64" ) &&
"${SHASUM_RET%% *}" != "9f82f22217db7c760d25956ca1590be996dbbe1ea397949726c68065524f69af"
)
]]; then
echo "BUILDER: WARNING! SHA sum of RPM does not match with what's expected!"
echo "BUILDER: WARNING! Verify that the .rpm file is not corrupt!"
fi;
echo "BUILDER: checksum verification done"
else
echo "BUILDER: checksum verification ignored"
fi;
# Set Dockerfile name
DOCKER_FILE="Dockerfile.${VERSION%??}"
# Give image base tag
IMAGE_NAME="${IMAGE_NAME}:${VERSION}"
# Add image flavor to the tag (regular has no tag)
if [ "${IMAGE_FLAVOR}" != "REGULAR" ]; then
IMAGE_NAME="${IMAGE_NAME}-${IMAGE_FLAVOR,,}"
fi;
# Decide on the architecture
if [ "${BUILDER_ARCH}" == "x86_64" ]; then
ARCH="amd64"
RPM_ARCH="x86_64"
# Could be reported as 'aarch64' or 'arm64' (ubuntu, etc.)
else
ARCH="arm64"
RPM_ARCH="aarch64"
fi;
# Add faststart tag to image and set Dockerfile
if [ "${FASTSTART}" == "true" ]; then
BASE_IMAGE="${IMAGE_NAME}-${ARCH}"
IMAGE_NAME="${IMAGE_NAME}-faststart-${ARCH}"
DOCKER_FILE="Dockerfile.faststart"
else
IMAGE_NAME="${IMAGE_NAME}-${ARCH}"
fi;
echo "BUILDER: building image $IMAGE_NAME"
BUILD_START_TMS=$(date '+%s')
buildah bud -f "$DOCKER_FILE" \
-t "${IMAGE_NAME}" \
--platform "linux/${ARCH}" \
--build-arg BUILD_MODE="${IMAGE_FLAVOR}" \
--build-arg BASE_IMAGE="${BASE_IMAGE}" \
--build-arg BUILD_VERSION="${VERSION}" \
--build-arg DB_FLAVOR="${DB_FLAVOR}" \
--build-arg ARCH="${ARCH}" \
--build-arg RPM_ARCH="${RPM_ARCH}"
BUILD_END_TMS=$(date '+%s')
BUILD_DURATION=$(( BUILD_END_TMS - BUILD_START_TMS ))
echo "Build of container image ${IMAGE_NAME} completed in ${BUILD_DURATION} seconds."