X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=Dockerfile;h=8a27f2c8477f7dc1bbd2018992b40a9850ca29af;hb=refs%2Fheads%2Fh-release;hp=df9c2b85cffbdfc87fcd7ce151cf654bea5250aa;hpb=297dbd6245ec69571c8ad7091a18cbe9c7ba2488;p=ric-app%2Fad.git diff --git a/Dockerfile b/Dockerfile index df9c2b8..8a27f2c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,4 @@ # ================================================================================== -# Copyright (c) 2019 AT&T Intellectual Property. # Copyright (c) 2020 HCL Technologies Limited. # # Licensed under the Apache License, Version 2.0 (the "License"); @@ -14,7 +13,7 @@ # See the License for the specific language governing permissions and # limitations under the License. # ================================================================================== -FROM frolvlad/alpine-miniconda3 +FROM frolvlad/alpine-miniconda3:python3.7 # RMR setup RUN mkdir -p /opt/route/ @@ -27,15 +26,14 @@ COPY local.rt /opt/route/local.rt ENV RMR_SEED_RT /opt/route/local.rt RUN apk update && apk add gcc musl-dev -RUN pip install ricxappframe -RUN conda update -n base -c defaults conda -RUN conda install pandas -RUN conda install -c conda-forge/label/cf202003 hdbscan -RUN pip install schedule -RUN conda install scikit-learn -#RUN pip install -U scikit-learn -COPY ad/ /tmp/ad +# Install +COPY setup.py /tmp +COPY LICENSE.txt /tmp/ +# RUN mkdir -p /tmp/ad/ +RUN pip install /tmp +RUN pip install ricxappframe +RUN pip install --force-reinstall redis==3.0.1 ENV PYTHONUNBUFFERED 1 -CMD python -W ignore /tmp/ad/main.py - +COPY src/ /src +CMD PYTHONPATH=/src:/usr/lib/python3.7/site-packages/:$PYTHONPATH run-src.py