From 300f22c882ecdbce4322f45c524a004903fc9f65 Mon Sep 17 00:00:00 2001 From: "Adam M. Szalkowski" Date: Sun, 1 Sep 2019 20:01:52 +0200 Subject: [PATCH] chore: disable TLS verification seems to be necessary with Azure Container Registry --- entrypoint.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/entrypoint.sh b/entrypoint.sh index 407fd37..efbf0e1 100755 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -13,4 +13,4 @@ fi PARAMS+=("${1:-${SOURCE}}") PARAMS+=("${2:-${DESTINATION}}") -skopeo copy "${PARAMS[@]}" +skopeo copy --src-tls-verify=false --dest-tls-verify=false "${PARAMS[@]}"