Skip to content

Commit 87a423a

Browse files
authored
Update manifest retrieval method in pushWebhookToAcr.sh to use docker command (#1474)
1 parent 3e8b61d commit 87a423a

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

deployment/mergebranch-webhook-deployment/ServiceGroupRoot/Scripts/pushWebhookToAcr.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,8 @@ else
7575
fi
7676

7777
# Get manifest details
78-
MANIFEST_JSON=$(az acr manifest show $SOURCE_IMAGE_FULL_PATH)
78+
echo "Getting manifest details for source image: $SOURCE_IMAGE_FULL_PATH"
79+
MANIFEST_JSON=$(docker manifest inspect $SOURCE_IMAGE_FULL_PATH)
7980
echo "Manifest: $MANIFEST_JSON"
8081

8182
# Extract the mediaType

0 commit comments

Comments
 (0)