Remove unused file 24/14924/1
authorashishj1729 <jain.ashish@samsung.com>
Wed, 17 Sep 2025 14:18:02 +0000 (19:48 +0530)
committerashishj1729 <jain.ashish@samsung.com>
Wed, 17 Sep 2025 14:20:50 +0000 (19:50 +0530)
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 <jain.ashish@samsung.com>

kf-pipelines/Dockerfile.pipeline [deleted file]

diff --git a/kf-pipelines/Dockerfile.pipeline b/kf-pipelines/Dockerfile.pipeline
deleted file mode 100644 (file)
index f499df2..0000000
+++ /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