From 4d7fbdda8fd74e96bd1eafdbbf57b99115f99b58 Mon Sep 17 00:00:00 2001 From: Taewan Kim Date: Mon, 15 Sep 2025 14:43:38 +0000 Subject: [PATCH] Fix the pipeline image build failure as a temporary workaround We use the l release branch instead of master for now, it will be switched to master later. Issue-ID: AIMLFW-244 Change-Id: I0840298bce91279427fc38ee8d21ec5874b6270e Signed-off-by: Taewan Kim --- tools/kubeflow/Dockerfile.pipeline | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/kubeflow/Dockerfile.pipeline b/tools/kubeflow/Dockerfile.pipeline index 425b806..020bb7d 100644 --- a/tools/kubeflow/Dockerfile.pipeline +++ b/tools/kubeflow/Dockerfile.pipeline @@ -22,8 +22,8 @@ RUN apt-get update && \ COPY requirements_pipeline.txt . RUN pip3 install -r requirements_pipeline.txt -RUN git clone "https://gerrit.o-ran-sc.org/r/aiml-fw/athp/sdk/feature-store" /SDK/featurestoresdk_main -RUN git clone "https://gerrit.o-ran-sc.org/r/aiml-fw/athp/sdk/model-storage" /SDK/modelmetricssdk_main +RUN git clone -b l-release "https://gerrit.o-ran-sc.org/r/aiml-fw/athp/sdk/feature-store" /SDK/featurestoresdk_main +RUN git clone -b l-release "https://gerrit.o-ran-sc.org/r/aiml-fw/athp/sdk/model-storage" /SDK/modelmetricssdk_main RUN pip3 install /SDK/featurestoresdk_main/. RUN pip3 install /SDK/modelmetricssdk_main/. -- 2.16.6