From 82297e820b266637dbade989b327f433ac551678 Mon Sep 17 00:00:00 2001 From: ashishj1729 Date: Wed, 17 Sep 2025 19:48:02 +0530 Subject: [PATCH] Remove unused file Removing Docker.pipeline file since it is not getting used to build "aiml-notebook" image. Issue_id: AIMLFW-244 Change-Id: I7af37e5be2f3794a6d52de028307daebe0ba6b1d signed-off-by: ashishj1729 --- kf-pipelines/Dockerfile.pipeline | 42 ---------------------------------------- 1 file changed, 42 deletions(-) delete mode 100644 kf-pipelines/Dockerfile.pipeline diff --git a/kf-pipelines/Dockerfile.pipeline b/kf-pipelines/Dockerfile.pipeline deleted file mode 100644 index f499df2..0000000 --- a/kf-pipelines/Dockerfile.pipeline +++ /dev/null @@ -1,42 +0,0 @@ -# ================================================================================== -# -# Copyright (c) 2022 Samsung Electronics Co., Ltd. All Rights Reserved. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# -# ================================================================================== - -FROM python:3.8 -RUN pip3 install protobuf==3.20.1 -RUN pip3 install tensorflow==2.5.0 -RUN pip3 install cassandra-driver==3.25.0 -RUN pip3 install pandas==1.4.4 -RUN pip3 install scikit-learn -RUN pip3 install boto3 -RUN pip3 install botocore -RUN pip3 install kubernetes - -RUN git clone "https://gerrit.o-ran-sc.org/r/aiml-fw/athp/sdk/feature-store" -RUN git clone "https://gerrit.o-ran-sc.org/r/aiml-fw/athp/sdk/model-storage" -RUN mkdir -p /SDK/featurestoresdk_main/ -RUN mkdir -p /SDK/modelmetricssdk_main/ - -RUN cp -R feature-store/. /SDK/featurestoresdk_main/. -RUN cp -R model-storage/. /SDK/modelmetricssdk_main/. - -WORKDIR /SDK - -RUN pip3 install featurestoresdk_main/. -RUN pip3 install modelmetricssdk_main/. -RUN mkdir -p /app_run -WORKDIR /app_run -- 2.16.6