diff --git a/copy.sh b/copy.sh index b8b1f86..40c52ed 100755 --- a/copy.sh +++ b/copy.sh @@ -13,11 +13,12 @@ source_images=( "golang:1.22.5-bookworm" # docker syntax - docker/dockerfile:1.7-labs + docker/dockerfile:1.9-labs ) for source_image in "${source_images[@]}"; do # replaces slashes in images names with dashes target_image_name=$(echo "${source_image}" | tr '/' '-') crane copy "${source_image}" "${target_registry}/${target_image_name}" -done \ No newline at end of file +done +