From 66500eb785f56bbcd3de088b46b4f2b7b9a8452e Mon Sep 17 00:00:00 2001 From: bedanley Date: Mon, 16 Dec 2024 09:35:54 -0700 Subject: [PATCH] Add isob suppport to make file --- Makefile | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 8d72f70..5c4ceb5 100644 --- a/Makefile +++ b/Makefile @@ -65,10 +65,12 @@ endif # DOMAIN - used for the docker login ifeq (${DOMAIN},) -ifeq ($(findstring iso,${REGION}),) -DOMAIN := amazonaws.com -else +ifeq ($(findstring isob,${REGION}),isob) +DOMAIN := sc2s.sgov.gov +else ifeq ($(findstring iso,${REGION}),iso) DOMAIN := c2s.ic.gov +else +DOMAIN := amazonaws.com endif endif