chore(makefile): bump kaniko to 1.7.0
All checks were successful
continuous-integration/drone/push Build is passing

no need to force as this version of kaniko is already capable of
detecting container engine on cgroupsv2 hosts
This commit is contained in:
surtur 2021-10-21 01:08:57 +02:00
parent 998ae2bb4d
commit 8c2b65c4cd
Signed by: wanderer
GPG Key ID: 19CE1EC1D9E0486D

View File

@ -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