We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ed648c5 commit 5846bb2Copy full SHA for 5846bb2
OracleDatabase/RAC/OracleRealApplicationClusters/dockerfiles/buildContainerImage.sh
@@ -92,7 +92,11 @@ while getopts "hiv:o:pn:" optname; do
92
;;
93
esac
94
done
95
-
+# Automatically set SKIPMD5=1 if SLIMMING=true is passed in DOCKEROPS
96
+if [[ "$DOCKEROPS" == *"--build-arg SLIMMING=true"* ]]; then
97
+ SKIPMD5=1
98
+ echo "SLIMMING=true detected, SKIPMD5 is automatically set to 1."
99
+fi
100
# Oracle Database Image Name
101
if [ "${IMAGE_NAME}"x = "x" ] && [ "${SLIM}" == "true" ]; then
102
IMAGE_NAME="oracle/database-rac:${VERSION}-slim"
0 commit comments