[RICAPP-206] Update Committer INFO in QP xApp
[ric-app/qp.git] / Dockerfile
index 402fab7..58df5f3 100644 (file)
@@ -1,5 +1,6 @@
 # ==================================================================================
-#       Copyright (c) 2020 AT&T Intellectual Property.
+#   Copyright (c) 2020 HCL Technologies Limited.    
+#   Copyright (c) 2020 AT&T Intellectual Property.
 #
 #   Licensed under the Apache License, Version 2.0 (the "License");
 #   you may not use this file except in compliance with the License.
@@ -13,8 +14,8 @@
 #   See the License for the specific language governing permissions and
 #   limitations under the License.
 # ==================================================================================
-FROM python:3.8-alpine
-
+FROM frolvlad/alpine-miniconda3:python3.7
+#FROM python:3.7-alpine
 # RMR setup
 RUN mkdir -p /opt/route/
 # copy rmr files from builder image in lieu of an Alpine package
@@ -27,13 +28,12 @@ ENV RMR_SEED_RT /opt/route/local.rt
 
 # sdl needs gcc
 RUN apk update && apk add gcc musl-dev
-
 # Install
 COPY setup.py /tmp
 COPY LICENSE.txt /tmp/
-COPY qp/ /tmp/qp
 RUN pip install /tmp
-
+RUN pip install --force-reinstall redis==3.0.1
+COPY src/ /src
 # Run
 ENV PYTHONUNBUFFERED 1
-CMD run-qp.py
+CMD PYTHONPATH=/src:/usr/lib/python3.7/site-packages/:$PYTHONPATH run-qp.py