blob: 1ec838a69ed26351774e128b9dc606d93f68bc2f [file] [log] [blame]
tiernoa8d63632018-05-10 13:12:32 +02001# This creates osm/NBI docker from local NBI source code
2
Mike Marchettic678d042018-04-18 13:51:27 -04003FROM ubuntu:16.04
4
5# Set the working directory to /app
6WORKDIR /app/osm_nbi
7
8# Copy the current directory contents into the container at /app
9ADD . /app
10
tiernoa8d63632018-05-10 13:12:32 +020011RUN apt-get update && apt-get install -y git python3 python3-jsonschema \
tiernoaae4dc42018-06-11 18:55:50 +020012 python3-pymongo python3-yaml python3-pip \
Mike Marchettic678d042018-04-18 13:51:27 -040013 && pip3 install pip==9.0.3 \
tiernoaae4dc42018-06-11 18:55:50 +020014 && pip3 install aiokafka cherrypy \
Mike Marchettic678d042018-04-18 13:51:27 -040015 && mkdir -p /app/storage/kafka && mkdir -p /app/log
tiernoaae4dc42018-06-11 18:55:50 +020016
17# OSM_COMMON
tiernoa8d63632018-05-10 13:12:32 +020018RUN 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
tiernoaae4dc42018-06-11 18:55:50 +020023# OSM_IM
24RUN 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 Marchettic678d042018-04-18 13:51:27 -040031
32EXPOSE 9999
33
34LABEL 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
40VOLUME /app/storage
41# Used for logs
42VOLUME /app/log
43
44# The following ENV can be added with "docker run -e xxx' to configure
45# server
46ENV OSMNBI_SOCKET_HOST 0.0.0.0
47ENV OSMNBI_SOCKET_PORT 9999
48# storage
49ENV OSMNBI_STORAGE_PATH /app/storage
50# database
51ENV OSMNBI_DATABASE_DRIVER mongo
52ENV OSMNBI_DATABASE_HOST mongo
53ENV OSMNBI_DATABASE_PORT 27017
54# web
55ENV OSMNBI_STATIC_DIR /app/osm_nbi/html_public
56# logs
57ENV OSMNBI_LOG_FILE /app/log
58ENV OSMNBI_LOG_LEVEL DEBUG
59# message
60ENV OSMNBI_MESSAGE_DRIVER kafka
61ENV OSMNBI_MESSAGE_HOST kafka
62ENV OSMNBI_MESSAGE_PORT 9092
tiernof5298be2018-05-16 14:43:57 +020063# logs
64ENV OSMNBI_LOG_FILE /app/log/nbi.log
65ENV OSMNBI_LOG_LEVEL DEBUG
Mike Marchettic678d042018-04-18 13:51:27 -040066
67# Run app.py when the container launches
68CMD ["python3", "nbi.py"]
69