From 345adc3effdd3330b2ce59623b3e1a0d2abd6989 Mon Sep 17 00:00:00 2001 From: Deepali Chourasia Date: Mon, 17 Jun 2024 23:27:38 -0400 Subject: [PATCH] attempt to fix test failure --- open_ce/container_build.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/open_ce/container_build.py b/open_ce/container_build.py index f2575600..8c38dbb0 100644 --- a/open_ce/container_build.py +++ b/open_ce/container_build.py @@ -26,9 +26,9 @@ from open_ce.inputs import Argument OPEN_CE_PATH = os.path.abspath(os.path.join(os.path.dirname(__file__), ".")) -BUILD_IMAGE_NAME = "builder" +BUILD_IMAGE_NAME = "builder/ubi9" BUILD_IMAGE_PATH = os.path.join(OPEN_CE_PATH, "images", BUILD_IMAGE_NAME) -BUILD_CUDA_IMAGE_NAME = "builder-cuda" +BUILD_CUDA_IMAGE_NAME = "builder-cuda/ubi9" BUILD_CUDA_IMAGE_PATH = os.path.join(OPEN_CE_PATH, "images", BUILD_CUDA_IMAGE_NAME) LOCAL_FILES_PATH = os.path.join(os.path.join(os.getcwd(), "local_files"))