From f5fdb75ab17fd4dd8b432706b41d6fbe3780e0b3 Mon Sep 17 00:00:00 2001 From: Jonathan Perry Date: Tue, 11 Oct 2022 19:42:57 -0700 Subject: [PATCH] Update the AGENT_IMAGE URL in the Makefile (#886) Update the agent_image so that we use an agent that calculates checksums of the images instead of shasums in local dev mode. --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 1d5f1e666d..6cff43b32e 100644 --- a/Makefile +++ b/Makefile @@ -20,7 +20,7 @@ else endif endif -AGENT_IMAGE ?= zarfdev/agent:ef08e77c3880ac64c3cc10ecd314be0869f8f70e +AGENT_IMAGE ?= zarfdev/agent:11e53b7c872ce83d5752cb20e640eabd04956258 CLI_VERSION := $(if $(shell git describe --tags),$(shell git describe --tags),"UnknownVersion") BUILD_ARGS := -s -w -X 'github.com/defenseunicorns/zarf/src/config.CLIVersion=$(CLI_VERSION)' @@ -59,7 +59,7 @@ check-ui: ## Build the Zarf UI if needed $(MAKE) build-ui;\ ./.hooks/print-ui-diff.sh > build/ui/git-info.txt;\ fi - + build-ui: ## Build the Zarf UI npm ci npm run build