Update to Dockerfile and requirements.txt 59/9659/1
authorjosephthaliath <jo.thaliath@samsung.com>
Wed, 16 Nov 2022 07:19:42 +0000 (12:49 +0530)
committerjosephthaliath <jo.thaliath@samsung.com>
Wed, 16 Nov 2022 07:21:01 +0000 (12:51 +0530)
Issue-Id: AIMLFW-4

Signed-off-by: josephthaliath <jo.thaliath@samsung.com>
Change-Id: Id57ea3a16b325ff3bbcc98f46af9943dc7ea20d7

Dockerfile
requirements.txt

index d40cf05..7ee8677 100644 (file)
@@ -29,6 +29,14 @@ RUN apt-get install -y apt-utils
 # Copy sources into the container
 COPY . .
 
+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/.
+RUN pip3 install /SDK/featurestoresdk_main/.
+RUN pip3 install /SDK/modelmetricssdk_main/.
 RUN pip3 install .
 RUN pip3 install -r requirements.txt
 
index 6cd1e6b..9a9d00c 100644 (file)
@@ -7,3 +7,4 @@ pg8000
 requests
 pandas
 PyYAML
+kubernetes