diff --git a/templates/job/container/build.yml b/templates/job/container/build.yml
index e6b383accc3588bd703795e28fb60c89e39d95f3..bdfbc03db75f6a6bff609e0877b811bb27c03d64 100644
--- a/templates/job/container/build.yml
+++ b/templates/job/container/build.yml
@@ -76,7 +76,7 @@ container:purge:
       echo "  🏭 registry : ${CI_REGISTRY}"
       echo "  📦     name : ${full_image_name}"
 
-      for tag in $(crane ls ${full_image_name} | grep ${container_base_tag}); do
+      for tag in $(crane ls ${CI_REGISTRY}/${full_image_name} | grep ${container_base_tag}); do
         echo "      🏷️ tags : ${tag}"
         crane delete ${CI_REGISTRY}/${full_image_name}:${tag}
       done