From 67d971dca8a2d4b983792b794f600a66aa57c879 Mon Sep 17 00:00:00 2001 From: Brian Carey Date: Thu, 7 Nov 2024 08:12:07 +0000 Subject: [PATCH] bootstrap: Rename Dockerfile to Containerfile As we are using podman to build and publish[1] the bootstrap and golang image, it makes more sense for these images to use a Containerfile [1] https://github.com/kubevirt/project-infra/blob/e0f89d2a2ae41deed759fef548c8f4e73362103d/images/publish_multiarch_image.sh#L93C1-L101C9 Signed-off-by: Brian Carey --- images/bootstrap/{Dockerfile => Containerfile} | 0 images/golang/{Dockerfile => Containerfile} | 0 images/publish_multiarch_image.sh | 2 +- images/vm-image-builder/{Dockerfile => Containerfile} | 0 4 files changed, 1 insertion(+), 1 deletion(-) rename images/bootstrap/{Dockerfile => Containerfile} (100%) rename images/golang/{Dockerfile => Containerfile} (100%) rename images/vm-image-builder/{Dockerfile => Containerfile} (100%) diff --git a/images/bootstrap/Dockerfile b/images/bootstrap/Containerfile similarity index 100% rename from images/bootstrap/Dockerfile rename to images/bootstrap/Containerfile diff --git a/images/golang/Dockerfile b/images/golang/Containerfile similarity index 100% rename from images/golang/Dockerfile rename to images/golang/Containerfile diff --git a/images/publish_multiarch_image.sh b/images/publish_multiarch_image.sh index 437516f923..3a8524d1cb 100755 --- a/images/publish_multiarch_image.sh +++ b/images/publish_multiarch_image.sh @@ -67,7 +67,7 @@ EOF } get_base_image() { - name="$(cat Dockerfile |grep FROM|awk '{print $2}')" + name="$(cat Containerfile |grep FROM|awk '{print $2}')" echo "${name}" } diff --git a/images/vm-image-builder/Dockerfile b/images/vm-image-builder/Containerfile similarity index 100% rename from images/vm-image-builder/Dockerfile rename to images/vm-image-builder/Containerfile