File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
OracleDatabase/SingleInstance/dockerfiles Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -179,16 +179,16 @@ done
179
179
# Check that we have a container runtime installed
180
180
checkContainerRuntime
181
181
182
- # Only 19c EE is supported on ARM64 platform
182
+ # Only 19c EE and 23ai Free are supported on ARM64 platform
183
183
if [ " $( arch) " == " aarch64" ] || [ " $( arch) " == " arm64" ]; then
184
184
BUILD_OPTS=(" --build-arg" " BASE_IMAGE=oraclelinux:8" " ${BUILD_OPTS[@]} " )
185
185
PLATFORM=" .arm64"
186
- if { [ " ${VERSION} " == " 19.3.0" ] && [ " ${ENTERPRISE} " -eq 1 ]; }; then
186
+ if [ " ${VERSION} " == " 19.3.0" ] && { [ " ${BASE_ONLY} " -eq 1 ] || [ " ${ENTERPRISE} " -eq 1 ]; }; then
187
187
BUILD_OPTS=(" --build-arg" " INSTALL_FILE_1=LINUX.ARM64_1919000_db_home.zip" " ${BUILD_OPTS[@]} " )
188
188
elif { [ " ${VERSION} " == " 23.6.0" ] && [ " ${FREE} " -eq 1 ]; }; then
189
189
BUILD_OPTS=(" --build-arg" " INSTALL_FILE_1=https://download.oracle.com/otn-pub/otn_software/db-free/oracle-database-free-23ai-1.0-1.el8.aarch64.rpm" " ${BUILD_OPTS[@]} " )
190
190
else
191
- echo " Currently only 19c enterprise edition is supported on ARM64 platform." ;
191
+ echo " Currently only 19c enterprise edition and 23ai Free are supported on ARM64 platform." ;
192
192
exit 1;
193
193
fi ;
194
194
fi ;
You can’t perform that action at this time.
0 commit comments