17 lines
467 B
Bash
Executable file
17 lines
467 B
Bash
Executable file
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
image=$@
|
|
|
|
image_information=$(oras discover --artifact-type application/json "$image")
|
|
#printf "$image_information\n"
|
|
printf "Found image $image...\n"
|
|
|
|
report_digest=$(echo "$image_information" | tail -n1 | awk -F ' ' '{print $2}')
|
|
#printf "$report_digest\n"
|
|
printf "Found digests for scan report...\n"
|
|
|
|
image_base=$(echo "$image" | awk -F ':' '{print $1}')
|
|
printf "Pulling $image_base:@$report_digest...\n"
|
|
oras pull "$image_base:@$report_digest"
|