Skip to content

Commit 3ed4fb1

Browse files
committed
Match ARM tag names used by oraclelinux images
1 parent 4326461 commit 3ed4fb1

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

buildAndPushImage.sh

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -75,15 +75,15 @@ ${WLSIMG_BUILDER:-docker} push $PROXY_SETTINGS $name-amd64 || {
7575
echo "There was an error pushing the amd64 image."
7676
exit 1
7777
}
78-
${WLSIMG_BUILDER:-docker} build $PROXY_SETTINGS --pull --platform linux/arm64 --tag $name-aarch64 -f $SCRIPTPATH/Dockerfile $SCRIPTPATH || {
79-
echo "There was an error building the aarch64 image."
78+
${WLSIMG_BUILDER:-docker} build $PROXY_SETTINGS --pull --platform linux/arm64 --tag $name-arm64v8 -f $SCRIPTPATH/Dockerfile $SCRIPTPATH || {
79+
echo "There was an error building the arm64v8 image."
8080
exit 1
8181
}
82-
${WLSIMG_BUILDER:-docker} push $PROXY_SETTINGS $name-aarch64 || {
83-
echo "There was an error pushing the aarch64 image."
82+
${WLSIMG_BUILDER:-docker} push $PROXY_SETTINGS $name-arm64v8 || {
83+
echo "There was an error pushing the arm64v8 image."
8484
exit 1
8585
}
86-
${WLSIMG_BUILDER:-docker} manifest create $PROXY_SETTINGS $name --amend $name-amd64 --amend $name-aarch64 || {
86+
${WLSIMG_BUILDER:-docker} manifest create $PROXY_SETTINGS $name --amend $name-amd64 --amend $name-arm64v8 || {
8787
echo "There was an error building the manifest."
8888
exit 1
8989
}

0 commit comments

Comments
 (0)