From 8c2b65c4cd32db37c60a5ba30cb89dd9e0ae88fc Mon Sep 17 00:00:00 2001 From: surtur Date: Thu, 21 Oct 2021 01:08:57 +0200 Subject: [PATCH] chore(makefile): bump kaniko to 1.7.0 no need to force as this version of kaniko is already capable of detecting container engine on cgroupsv2 hosts --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 3f520ae..eabc0e0 100644 --- a/Makefile +++ b/Makefile @@ -5,10 +5,10 @@ dargs = build -t $(dtag) --no-cache --pull - < $(dfile) cleanargs = image rm -f $(dtag) pruneargs = system prune -af dargskaniko = run --rm -it -w=$(kanikowdir) -v $$PWD:$(kanikowdir) -kanikoexecutorimg = gcr.io/kaniko-project/executor +kanikoexecutorimg = gcr.io/kaniko-project/executor:v1.7.0-debug kanikowdir = /src kanikocontext = . -kanikoargs = -f=$(dfile) -c=$(kanikocontext) --use-new-run --snapshotMode=redo --no-push --force +kanikoargs = -f=$(dfile) -c=$(kanikocontext) --use-new-run --snapshotMode=redo --no-push .PHONY: build kaniko clean test prune