blob: af03e3b6dc95caf04446007d16a358644e5ed7c2 [file] [log] [blame]
calvinosanchbfb77902019-07-31 13:31:16 +00001##
2# Copyright 2019 ETSI
3#
4# Licensed under the Apache License, Version 2.0 (the "License"); you may
5# not use this file except in compliance with the License. You may obtain
6# a copy of the License at
7#
8# http://www.apache.org/licenses/LICENSE-2.0
9#
10# Unless required by applicable law or agreed to in writing, software
11# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
12# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
13# License for the specific language governing permissions and limitations
14# under the License.
15##
16
17########################################################################
18
Mike Marchetti182bd732018-09-05 09:52:42 -040019# This creates osm/NBI docker from local NBI source code
20
madavi2ed94942019-10-23 17:45:05 +053021FROM ubuntu:18.04
Mike Marchetti182bd732018-09-05 09:52:42 -040022
madavi2ed94942019-10-23 17:45:05 +053023RUN apt-get update && DEBIAN_FRONTEND=noninteractive apt-get -y install curl software-properties-common
Mike Marchetti182bd732018-09-05 09:52:42 -040024
fonsecajf404b8b2021-02-11 14:08:52 +010025RUN apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install -y git python3 python3-dev python3-pip python3-yaml
26
27RUN python3 -m pip install --upgrade pip
28
29RUN DEBIAN_FRONTEND=noninteractive apt-get install -y rustc cargo
30
31RUN python3 --version && python3 -m pip --version
32
33RUN rustc --version && cargo --version
34
35RUN python3 -m pip install --upgrade setuptools setuptools-rust
36
37RUN python3 -m pip install --upgrade aiokafka dataclasses python-keystoneclient pymongo jsonschema \
38 aiohttp cherrypy==18.1.2 pyangbind keystoneauth1 \
Mike Marchetti13d76c82018-09-19 15:00:36 -040039 && mkdir -p /app/storage/kafka && mkdir -p /app/log
40
Mike Marchetti182bd732018-09-05 09:52:42 -040041ARG REPOSITORY_BASE=http://osm-download.etsi.org/repository/osm/debian
garciadeblasfa81f282020-12-15 00:32:13 +000042ARG RELEASE=ReleaseNINE-daily
Mike Marchetti182bd732018-09-05 09:52:42 -040043ARG REPOSITORY_KEY=OSM%20ETSI%20Release%20Key.gpg
44ARG REPOSITORY=testing
45
46RUN curl ${REPOSITORY_BASE}/${RELEASE}/${REPOSITORY_KEY} | apt-key add -
47RUN add-apt-repository -y "deb ${REPOSITORY_BASE}/${RELEASE} ${REPOSITORY} NBI IM common" && apt update
48
Mike Marchetti13d76c82018-09-19 15:00:36 -040049ARG NBI_VERSION
50ARG COMMON_VERSION
51ARG IM_VERSION
52
fonsecajf404b8b2021-02-11 14:08:52 +010053RUN apt-get update &&DEBIAN_FRONTEND=noninteractive apt-get -y install python3-osm-nbi${NBI_VERSION} python3-osm-common${COMMON_VERSION} python3-osm-im${IM_VERSION}
Mike Marchetti182bd732018-09-05 09:52:42 -040054
55# Set the working directory to /app
56WORKDIR /app/osm_nbi
57
Mike Marchetti182bd732018-09-05 09:52:42 -040058EXPOSE 9999
59
Mike Marchetti13d76c82018-09-19 15:00:36 -040060RUN cp -R /usr/lib/python3/dist-packages/osm_nbi/html_public /app/osm_nbi/html_public
61RUN cp /usr/lib/python3/dist-packages/osm_nbi/nbi.cfg /app/osm_nbi/
62RUN cp -R /usr/lib/python3/dist-packages/osm_nbi/http /app/osm_nbi/
63
Mike Marchetti182bd732018-09-05 09:52:42 -040064LABEL Maintainer="alfonso.tiernosepulveda@telefonica.com" \
65 Description="This implements a north bound interface for OSM" \
66 Version="1.0" \
67 Author="Alfonso Tierno"
68
69# Used for local storage
70VOLUME /app/storage
71# Used for logs
72VOLUME /app/log
73
74# The following ENV can be added with "docker run -e xxx' to configure
75# server
76ENV OSMNBI_SOCKET_HOST 0.0.0.0
77ENV OSMNBI_SOCKET_PORT 9999
tierno2c002c92019-09-13 12:57:35 +000078ENV OSMNBI_SERVER_SSL_CERTIFICATE /app/osm_nbi/http/cert.pem
79ENV OSMNBI_SERVER_SSL_PRIVATE_KEY /app/osm_nbi/http/privkey.pem
Mike Marchetti182bd732018-09-05 09:52:42 -040080# storage
81ENV OSMNBI_STORAGE_PATH /app/storage
82# database
83ENV OSMNBI_DATABASE_DRIVER mongo
Juancc084d72018-11-16 11:08:07 -030084ENV OSMNBI_DATABASE_URI mongodb://mongo:27017
85#ENV OSMNBI_DATABASE_HOST mongo
86#ENV OSMNBI_DATABASE_PORT 27017
87
Mike Marchetti182bd732018-09-05 09:52:42 -040088# web
Mike Marchetti13d76c82018-09-19 15:00:36 -040089ENV OSMNBI_STATIC_DIR /app/osm_nbi/html_public
Mike Marchetti182bd732018-09-05 09:52:42 -040090# message
91ENV OSMNBI_MESSAGE_DRIVER kafka
92ENV OSMNBI_MESSAGE_HOST kafka
93ENV OSMNBI_MESSAGE_PORT 9092
94# logs
95ENV OSMNBI_LOG_FILE /app/log/nbi.log
96ENV OSMNBI_LOG_LEVEL DEBUG
Eduardo Sousae193dfd2018-09-21 11:37:49 +010097# authentication
98ENV OSMNBI_AUTHENTICATION_BACKEND internal
99#ENV OSMNBI_AUTHENTICATION_BACKEND keystone
100#ENV OSMNBI_AUTHENTICATION_AUTH_URL keystone
101#ENV OSMNBI_AUTHENTICATION_AUTH_PORT 5000
102#ENV OSMNBI_AUTHENTICATION_USER_DOMAIN_NAME default
103#ENV OSMNBI_AUTHENTICATION_PROJECT_DOMAIN_NAME default
104#ENV OSMNBI_AUTHENTICATION_SERVICE_USERNAME nbi
105#ENV OSMNBI_AUTHENTICATION_SERVICE_PASSWORD nbi
106#ENV OSMNBI_AUTHENTICATION_SERVICE_PROJECT service
vijay.rbdb48022019-05-06 15:38:23 +0530107#prometheus
108ENV OSMNBI_PROMETHEUS_HOST prometheus
109ENV OSMNBI_PROMETHEUS_PORT 9090
Mike Marchetti182bd732018-09-05 09:52:42 -0400110
tierno836e9db2019-07-22 13:23:56 +0000111HEALTHCHECK --start-period=120s --interval=10s --timeout=5s --retries=5 \
Mike Marchetti851aac22018-09-20 10:18:01 -0400112 CMD curl -k https://localhost:9999/osm/ | grep Welcome || exit 1
113
Mike Marchetti182bd732018-09-05 09:52:42 -0400114# Run app.py when the container launches
tierno2c002c92019-09-13 12:57:35 +0000115CMD python3 -m osm_nbi.nbi
116