From eebbfc2b9218956db8c73b37e3ad98f7d8c73d77 Mon Sep 17 00:00:00 2001 From: Piyush Kumar Date: Fri, 17 May 2024 12:39:55 +0530 Subject: [PATCH] update stylus image urls to use variable args --- Earthfile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Earthfile b/Earthfile index 8f44a20..5cbfc07 100644 --- a/Earthfile +++ b/Earthfile @@ -90,11 +90,11 @@ IF [[ "$BASE_IMAGE" =~ "nvidia-jetson-agx-orin" ]] END IF [ "$FIPS_ENABLED" = "true" ] - ARG STYLUS_BASE=gcr.io/spectro-images-public/stylus-framework-fips-linux-$ARCH:$PE_VERSION - ARG STYLUS_PACKAGE_BASE=gcr.io/spectro-images-public/stylus-fips-linux-$ARCH:$PE_VERSION + ARG STYLUS_BASE=$SPECTRO_PUB_REPO/stylus-framework-fips-linux-$ARCH:$PE_VERSION + ARG STYLUS_PACKAGE_BASE=$SPECTRO_PUB_REPO/stylus-fips-linux-$ARCH:$PE_VERSION ELSE - ARG STYLUS_BASE=gcr.io/spectro-images-public/stylus-framework-linux-$ARCH:$PE_VERSION - ARG STYLUS_PACKAGE_BASE=gcr.io/spectro-images-public/stylus-linux-$ARCH:$PE_VERSION + ARG STYLUS_BASE=$SPECTRO_PUB_REPO/stylus-framework-linux-$ARCH:$PE_VERSION + ARG STYLUS_PACKAGE_BASE=$SPECTRO_PUB_REPO/stylus-linux-$ARCH:$PE_VERSION END IF [ "$CUSTOM_TAG" != "" ]