From 4d341467191c447e8f4901af919e35f606e72a23 Mon Sep 17 00:00:00 2001 From: Brett Logan Date: Fri, 23 Dec 2022 18:28:49 -0500 Subject: [PATCH] Fix container image names in InSpec tests Signed-off-by: Brett Logan --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 458651ff..b2cac022 100644 --- a/Makefile +++ b/Makefile @@ -75,10 +75,10 @@ SUPER_LINTER_TEST_CONTINER_URL := '' DOCKERFILE := '' IMAGE := '' ifeq ($(IMAGE),slim) - SUPER_LINTER_TEST_CONTINER_URL := "ghcr.io/github/super-linter:slim-test" + SUPER_LINTER_TEST_CONTINER_URL := "ghcr.io/github/super-linter:slim" IMAGE := "slim" else - SUPER_LINTER_TEST_CONTINER_URL := "ghcr.io/github/super-linter:test" + SUPER_LINTER_TEST_CONTINER_URL := "ghcr.io/github/super-linter:standard" IMAGE := "standard" endif