diff --git a/Makefile b/Makefile index 499f025..8fce0f2 100644 --- a/Makefile +++ b/Makefile @@ -14,18 +14,18 @@ endif .PHONY: all all: - docker build --build-arg TAG=$(TAG) -t rancher/image-build-crictl:$(TAG)-$(ARCH) . + docker build --build-arg TAG=$(TAG) -t rancher/crictl:$(TAG)-$(ARCH) . .PHONY: image-push image-push: - docker push rancher/image-build-crictl:$(TAG)-$(ARCH) >> /dev/null + docker push rancher/crictl:$(TAG)-$(ARCH) >> /dev/null .PHONY: scan image-scan: - trivy --severity $(SEVERITIES) --no-progress --skip-update --ignore-unfixed rancher/image-build-crictl:$(TAG) + trivy --severity $(SEVERITIES) --no-progress --skip-update --ignore-unfixed rancher/crictl:$(TAG) .PHONY: image-manifest image-manifest: - docker image inspect rancher/image-build-crictl:$(TAG)-$(ARCH) - DOCKER_CLI_EXPERIMENTAL=enabled docker manifest create rancher/image-build-crictl:$(TAG)-$(ARCH) \ - $(shell docker image inspect rancher/image-build-crictl:$(TAG)-$(ARCH) | jq -r '.[] | .RepoDigests[0]') + docker image inspect rancher/crictl:$(TAG)-$(ARCH) + DOCKER_CLI_EXPERIMENTAL=enabled docker manifest create rancher/crictl:$(TAG)-$(ARCH) \ + $(shell docker image inspect rancher/crictl:$(TAG)-$(ARCH) | jq -r '.[] | .RepoDigests[0]')