From b15ce56d3a9826e58521c20ec210740422f751ce Mon Sep 17 00:00:00 2001 From: Monosij Ghosh Date: Thu, 19 Dec 2024 18:04:44 +0530 Subject: [PATCH] pipeline docker file fix added fix for incompatible kfp pipeline version (2.8 -> 2.11) Change-Id: Ib5420fcfbc102c35997cadea34abda11c74f00f5 Signed-off-by: Monosij Ghosh --- tools/kubeflow/Dockerfile.pipeline | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tools/kubeflow/Dockerfile.pipeline b/tools/kubeflow/Dockerfile.pipeline index 4d43f70..425b806 100644 --- a/tools/kubeflow/Dockerfile.pipeline +++ b/tools/kubeflow/Dockerfile.pipeline @@ -16,14 +16,14 @@ # # ================================================================================== -FROM python:3.8-slim +FROM python:3.9-slim RUN apt-get update && \ apt-get install -y git COPY requirements_pipeline.txt . RUN pip3 install -r requirements_pipeline.txt -RUN git clone -b g-release "https://gerrit.o-ran-sc.org/r/aiml-fw/athp/sdk/feature-store" /SDK/featurestoresdk_main -RUN git clone -b g-release "https://gerrit.o-ran-sc.org/r/aiml-fw/athp/sdk/model-storage" /SDK/modelmetricssdk_main +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 pip3 install /SDK/featurestoresdk_main/. RUN pip3 install /SDK/modelmetricssdk_main/. -- 2.16.6