Merge branch 'netslice' 11/6911/1
authortierno <alfonso.tiernosepulveda@telefonica.com>
Fri, 16 Nov 2018 23:25:46 +0000 (00:25 +0100)
committertierno <alfonso.tiernosepulveda@telefonica.com>
Fri, 16 Nov 2018 23:28:01 +0000 (00:28 +0100)
Change-Id: Id030ead323e2a89acb43e8c7352b9b50d5717f17
Signed-off-by: tierno <alfonso.tiernosepulveda@telefonica.com>
1  2 
Dockerfile.local
osm_lcm/lcm.py

@@@ -19,7 -19,7 +19,7 @@@ FROM ubuntu:16.0
  WORKDIR /app/osm_lcm
  
  # Copy the current directory contents into the container at /app
- ADD . /app
 -#ADD . /app
++ADD . /app  # TODO move to the end
  
  RUN apt-get update && apt-get install -y git tox python3 \
      python3-pip python3-aiohttp \
@@@ -82,6 -82,8 +82,8 @@@ ENV OSMLCM_MESSAGE_PORT    909
  ENV OSMLCM_GLOBAL_LOGFILE  /app/log/lcm.log
  ENV OSMLCM_GLOBAL_LOGLEVEL DEBUG
  
 -ADD . /app
++# ADD . /app
  # Run app.py when the container launches
  CMD ["python3", "lcm.py"]
  
diff --cc osm_lcm/lcm.py
@@@ -27,8 -28,8 +28,8 @@@ min_RO_version = [0, 5, 72
  min_n2vc_version = "0.0.2"
  min_common_version = "0.1.11"
  # uncomment if LCM is installed as library and installed, and get them from __init__.py
--lcm_version = '0.1.23'
--lcm_version_date = '2018-11-13'
++lcm_version = '0.1.24'
++lcm_version_date = '2018-11-16'
  
  
  class Lcm: