Supporting VLDs for Netslice
[osm/NBI.git] / Dockerfile.local
1 # Licensed under the Apache License, Version 2.0 (the "License");
2 # you may not use this file except in compliance with the License.
3 # You may obtain a copy of the License at
4 #
5 #    http://www.apache.org/licenses/LICENSE-2.0
6 #
7 # Unless required by applicable law or agreed to in writing, software
8 # distributed under the License is distributed on an "AS IS" BASIS,
9 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
10 # implied.
11 # See the License for the specific language governing permissions and
12 # limitations under the License.
13
14 # This creates osm/NBI docker from local NBI source code
15
16 FROM ubuntu:16.04
17
18 # Set the working directory to /app
19 WORKDIR /app/NBI/osm_nbi
20
21 RUN apt-get update && apt-get install -y git python3 python3-jsonschema \
22     python3-pymongo python3-yaml python3-pip python3-keystoneclient \
23     && pip3 install pip==9.0.3 \
24     && pip3 install aiokafka cherrypy==18.0.0 keystoneauth1 \
25     && mkdir -p /app/storage/kafka && mkdir -p /app/log 
26
27 # OSM_COMMON
28 RUN git -C /app clone https://osm.etsi.org/gerrit/osm/common.git \
29     && pip3 install -e /app/common
30 #    && cd common  && python3 setup.py develop && cd ..
31 #    && pip3 install -U -r requirements.txt \
32 #    && cd ..
33
34 # OSM_IM
35 RUN pip3 install pyang && mkdir -p /app && cd /app \
36     && git -C /app clone https://github.com/robshakir/pyangbind \
37     && pip3 install -e /app/pyangbind \
38     && git -C /app clone  https://osm.etsi.org/gerrit/osm/IM \
39     && cd /app/IM/models/yang \
40     && mkdir /app/IM/osm_im \
41     && pyang --plugindir /app/pyangbind/pyangbind/plugin -f pybind -o /app/IM/osm_im/vnfd.py vnfd.yang \
42     && pyang --plugindir /app/pyangbind/pyangbind/plugin -f pybind -o /app/IM/osm_im/nsd.py nsd.yang \
43     && pyang --plugindir /app/pyangbind/pyangbind/plugin -f pybind -o /app/IM/osm_im/nst.py nst.yang \
44     && pip3 install -e /app/IM
45
46 EXPOSE 9999
47
48 LABEL Maintainer="alfonso.tiernosepulveda@telefonica.com" \
49       Description="This implements a north bound interface for OSM" \
50       Version="1.0" \
51       Author="Alfonso Tierno"
52
53 # Used for local storage
54 VOLUME /app/storage
55 # Used for logs
56 VOLUME /app/log
57
58 # The following ENV can be added with "docker run -e xxx' to configure
59 # server
60 ENV OSMNBI_SOCKET_HOST                          0.0.0.0
61 ENV OSMNBI_SOCKET_PORT                          9999
62 # storage
63 ENV OSMNBI_STORAGE_PATH                         /app/storage
64 # database
65 ENV OSMNBI_DATABASE_DRIVER                      mongo
66 ENV OSMNBI_DATABASE_HOST                        mongo
67 ENV OSMNBI_DATABASE_PORT                        27017
68 # ENV OSMNBI_DATABASE_USER                      xxx
69 # ENV OSMNBI_DATABASE_PASSWORD                  xxx
70 # ENV OSMNBI_DATABASE_COMMONKEY                 xxx
71 # web
72 ENV OSMNBI_STATIC_DIR                           /app/NBI/osm_nbi/html_public
73 # logs
74 # ENV OSMNBI_LOG_FILE                             /app/log/nbi.log
75 ENV OSMNBI_LOG_LEVEL                            DEBUG
76 # message
77 ENV OSMNBI_MESSAGE_DRIVER                       kafka
78 ENV OSMNBI_MESSAGE_HOST                         kafka
79 ENV OSMNBI_MESSAGE_PORT                         9092
80 # authentication
81 ENV OSMNBI_AUTHENTICATION_BACKEND               internal
82 #ENV OSMNBI_AUTHENTICATION_BACKEND               keystone
83 #ENV OSMNBI_AUTHENTICATION_AUTH_URL              keystone
84 #ENV OSMNBI_AUTHENTICATION_AUTH_PORT             5000
85 #ENV OSMNBI_AUTHENTICATION_USER_DOMAIN_NAME      default
86 #ENV OSMNBI_AUTHENTICATION_PROJECT_DOMAIN_NAME   default
87 #ENV OSMNBI_AUTHENTICATION_SERVICE_USERNAME      nbi
88 #ENV OSMNBI_AUTHENTICATION_SERVICE_PASSWORD      nbi
89 #ENV OSMNBI_AUTHENTICATION_SERVICE_PROJECT       service
90
91 # Copy the current directory contents into the container at /app
92 ADD . /app/NBI
93
94 # Run app.py when the container launches
95 CMD ["python3", "nbi.py"]