Removed common files and use osm/common package
Change-Id: I60f0cee9338fb5f1595e13bfab62805a4fec9913
Signed-off-by: tierno <alfonso.tiernosepulveda@telefonica.com>
diff --git a/Dockerfile.local b/Dockerfile.local
index 57b0f22..7f1a02b 100644
--- a/Dockerfile.local
+++ b/Dockerfile.local
@@ -1,3 +1,5 @@
+# This creates osm/NBI docker from local NBI source code
+
FROM ubuntu:16.04
# Set the working directory to /app
@@ -6,11 +8,16 @@
# Copy the current directory contents into the container at /app
ADD . /app
-RUN apt-get update && apt-get -y install git python3 python3-jsonschema \
+RUN apt-get update && apt-get install -y git python3 python3-jsonschema \
python3-cherrypy3 python3-pymongo python3-yaml python3-pip \
&& pip3 install pip==9.0.3 \
&& pip3 install aiokafka \
&& mkdir -p /app/storage/kafka && mkdir -p /app/log
+RUN git clone https://osm.etsi.org/gerrit/osm/common.git \
+ && cd common && python3 setup.py develop && cd ..
+# && pip3 install -U -r requirements.txt \
+# && cd ..
+
EXPOSE 9999