From: Monosij Ghosh Date: Thu, 19 Dec 2024 12:34:44 +0000 (+0530) Subject: pipeline docker file fix X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=commitdiff_plain;h=b15ce56d3a9826e58521c20ec210740422f751ce;p=aiml-fw%2Faimlfw-dep.git pipeline docker file fix added fix for incompatible kfp pipeline version (2.8 -> 2.11) Change-Id: Ib5420fcfbc102c35997cadea34abda11c74f00f5 Signed-off-by: Monosij Ghosh --- 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/.