From 8c001374b2861166324974e81431d8dcdb75e4d0 Mon Sep 17 00:00:00 2001 From: Mathias Fredriksson Date: Fri, 24 May 2024 08:53:12 +0000 Subject: [PATCH] chore: add update-kaniko-fork to makefile --- Makefile | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Makefile b/Makefile index e25cc794..12086583 100644 --- a/Makefile +++ b/Makefile @@ -20,6 +20,11 @@ test: test-registry test-race: go test -race -count=3 ./... +.PHYONY: update-kaniko-fork +update-kaniko-fork: + go mod edit -replace github.com/GoogleContainerTools/kaniko=github.com/coder/kaniko@main + go mod tidy + # Starts a local Docker registry on port 5000 with a local disk cache. .PHONY: test-registry test-registry: test-registry-container test-images-pull test-images-push