| tierno | a8d6363 | 2018-05-10 13:12:32 +0200 | [diff] [blame] | 1 | # This creates osm/NBI docker from local NBI source code |
| 2 | |
| Mike Marchetti | c678d04 | 2018-04-18 13:51:27 -0400 | [diff] [blame] | 3 | FROM ubuntu:16.04 |
| 4 | |
| 5 | # Set the working directory to /app |
| 6 | WORKDIR /app/osm_nbi |
| 7 | |
| 8 | # Copy the current directory contents into the container at /app |
| 9 | ADD . /app |
| 10 | |
| tierno | a8d6363 | 2018-05-10 13:12:32 +0200 | [diff] [blame] | 11 | RUN apt-get update && apt-get install -y git python3 python3-jsonschema \ |
| tierno | aae4dc4 | 2018-06-11 18:55:50 +0200 | [diff] [blame^] | 12 | python3-pymongo python3-yaml python3-pip \ |
| Mike Marchetti | c678d04 | 2018-04-18 13:51:27 -0400 | [diff] [blame] | 13 | && pip3 install pip==9.0.3 \ |
| tierno | aae4dc4 | 2018-06-11 18:55:50 +0200 | [diff] [blame^] | 14 | && pip3 install aiokafka cherrypy \ |
| Mike Marchetti | c678d04 | 2018-04-18 13:51:27 -0400 | [diff] [blame] | 15 | && mkdir -p /app/storage/kafka && mkdir -p /app/log |
| tierno | aae4dc4 | 2018-06-11 18:55:50 +0200 | [diff] [blame^] | 16 | |
| 17 | # OSM_COMMON |
| tierno | a8d6363 | 2018-05-10 13:12:32 +0200 | [diff] [blame] | 18 | RUN git clone https://osm.etsi.org/gerrit/osm/common.git \ |
| 19 | && cd common && python3 setup.py develop && cd .. |
| 20 | # && pip3 install -U -r requirements.txt \ |
| 21 | # && cd .. |
| 22 | |
| tierno | aae4dc4 | 2018-06-11 18:55:50 +0200 | [diff] [blame^] | 23 | # OSM_IM |
| 24 | RUN pip3 install pyang && mkdir -p /app && cd /app \ |
| 25 | && git clone https://github.com/robshakir/pyangbind \ |
| 26 | && pip3 install -e pyangbind \ |
| 27 | && git clone https://osm.etsi.org/gerrit/osm/IM \ |
| 28 | && cd /app/IM/models/yang \ |
| 29 | && pyang --plugindir /app/pyangbind/pyangbind/plugin -f pybind -o /app/osm_nbi/vnfd_catalog.py vnfd.yang \ |
| 30 | && pyang --plugindir /app/pyangbind/pyangbind/plugin -f pybind -o /app/osm_nbi/nsd_catalog.py nsd.yang |
| Mike Marchetti | c678d04 | 2018-04-18 13:51:27 -0400 | [diff] [blame] | 31 | |
| 32 | EXPOSE 9999 |
| 33 | |
| 34 | LABEL Maintainer="alfonso.tiernosepulveda@telefonica.com" \ |
| 35 | Description="This implements a north bound interface for OSM" \ |
| 36 | Version="1.0" \ |
| 37 | Author="Alfonso Tierno" |
| 38 | |
| 39 | # Used for local storage |
| 40 | VOLUME /app/storage |
| 41 | # Used for logs |
| 42 | VOLUME /app/log |
| 43 | |
| 44 | # The following ENV can be added with "docker run -e xxx' to configure |
| 45 | # server |
| 46 | ENV OSMNBI_SOCKET_HOST 0.0.0.0 |
| 47 | ENV OSMNBI_SOCKET_PORT 9999 |
| 48 | # storage |
| 49 | ENV OSMNBI_STORAGE_PATH /app/storage |
| 50 | # database |
| 51 | ENV OSMNBI_DATABASE_DRIVER mongo |
| 52 | ENV OSMNBI_DATABASE_HOST mongo |
| 53 | ENV OSMNBI_DATABASE_PORT 27017 |
| 54 | # web |
| 55 | ENV OSMNBI_STATIC_DIR /app/osm_nbi/html_public |
| 56 | # logs |
| 57 | ENV OSMNBI_LOG_FILE /app/log |
| 58 | ENV OSMNBI_LOG_LEVEL DEBUG |
| 59 | # message |
| 60 | ENV OSMNBI_MESSAGE_DRIVER kafka |
| 61 | ENV OSMNBI_MESSAGE_HOST kafka |
| 62 | ENV OSMNBI_MESSAGE_PORT 9092 |
| tierno | f5298be | 2018-05-16 14:43:57 +0200 | [diff] [blame] | 63 | # logs |
| 64 | ENV OSMNBI_LOG_FILE /app/log/nbi.log |
| 65 | ENV OSMNBI_LOG_LEVEL DEBUG |
| Mike Marchetti | c678d04 | 2018-04-18 13:51:27 -0400 | [diff] [blame] | 66 | |
| 67 | # Run app.py when the container launches |
| 68 | CMD ["python3", "nbi.py"] |
| 69 | |