Skip to content

Commit

Permalink
fix for slim build issue (#2889)
Browse files Browse the repository at this point in the history
  • Loading branch information
saurabhuja authored Nov 15, 2024
1 parent ed648c5 commit 5846bb2
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,11 @@ while getopts "hiv:o:pn:" optname; do
;;
esac
done

# Automatically set SKIPMD5=1 if SLIMMING=true is passed in DOCKEROPS
if [[ "$DOCKEROPS" == *"--build-arg SLIMMING=true"* ]]; then
SKIPMD5=1
echo "SLIMMING=true detected, SKIPMD5 is automatically set to 1."
fi
# Oracle Database Image Name
if [ "${IMAGE_NAME}"x = "x" ] && [ "${SLIM}" == "true" ]; then
IMAGE_NAME="oracle/database-rac:${VERSION}-slim"
Expand Down

0 comments on commit 5846bb2

Please sign in to comment.