49399fbe269691ae3ff702c08164d4cbf61f1c07
[osm/devops.git] / docker / NBI / Dockerfile
1 ##
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
19 FROM ubuntu:20.04 as INSTALL
20
21 RUN DEBIAN_FRONTEND=noninteractive apt-get --yes update && \
22     DEBIAN_FRONTEND=noninteractive apt-get --yes install \
23     gcc=4:9.3.* \
24     python3=3.8.* \
25     python3-dev=3.8.* \
26     python3-pip=20.0.2* \
27     python3-setuptools=45.2.* \
28     curl=7.68.*
29
30 ARG PYTHON3_OSM_COMMON_URL
31 ARG PYTHON3_OSM_IM_URL
32 ARG PYTHON3_OSM_NBI_URL
33
34 RUN curl $PYTHON3_OSM_COMMON_URL -o osm_common.deb
35 RUN dpkg -i ./osm_common.deb
36
37 RUN curl $PYTHON3_OSM_IM_URL -o osm_im.deb
38 RUN dpkg -i ./osm_im.deb
39
40 RUN curl $PYTHON3_OSM_NBI_URL -o osm_nbi.deb
41 RUN dpkg -i ./osm_nbi.deb
42
43 RUN pip3 install \
44     -r /usr/lib/python3/dist-packages/osm_common/requirements.txt \
45     -r /usr/lib/python3/dist-packages/osm_im/requirements.txt \
46     -r /usr/lib/python3/dist-packages/osm_nbi/requirements.txt
47
48 #######################################################################################
49 FROM ubuntu:20.04 as FINAL
50
51 ARG APT_PROXY
52 RUN if [ ! -z $APT_PROXY ] ; then \
53     echo "Acquire::http::Proxy \"$APT_PROXY\";" > /etc/apt/apt.conf.d/proxy.conf ;\
54     echo "Acquire::https::Proxy \"$APT_PROXY\";" >> /etc/apt/apt.conf.d/proxy.conf ;\
55     fi
56
57 RUN DEBIAN_FRONTEND=noninteractive apt-get --yes update && \
58     DEBIAN_FRONTEND=noninteractive apt-get --yes install \
59     python3-minimal=3.8.* \
60     && rm -rf /var/lib/apt/lists/*
61
62 COPY --from=INSTALL /usr/lib/python3/dist-packages /usr/lib/python3/dist-packages
63 COPY --from=INSTALL /usr/local/lib/python3.8/dist-packages  /usr/local/lib/python3.8/dist-packages
64
65 RUN mkdir -p /app/storage/kafka && mkdir -p /app/log
66
67 WORKDIR /app/osm_nbi
68
69 EXPOSE 9999
70
71 RUN cp -R /usr/lib/python3/dist-packages/osm_nbi/html_public /app/osm_nbi/html_public
72 RUN cp /usr/lib/python3/dist-packages/osm_nbi/nbi.cfg /app/osm_nbi/
73 RUN cp -R /usr/lib/python3/dist-packages/osm_nbi/http /app/osm_nbi/
74
75 # Used for local storage
76 VOLUME /app/storage
77 # Used for logs
78 VOLUME /app/log
79
80 # The following ENV can be added with "docker run -e xxx' to configure
81 # server
82 ENV OSMNBI_SOCKET_HOST     0.0.0.0
83 ENV OSMNBI_SOCKET_PORT     9999
84 ENV OSMNBI_SERVER_SSL_CERTIFICATE               /app/osm_nbi/http/cert.pem
85 ENV OSMNBI_SERVER_SSL_PRIVATE_KEY               /app/osm_nbi/http/privkey.pem
86 # storage
87 ENV OSMNBI_STORAGE_PATH    /app/storage
88 # database
89 ENV OSMNBI_DATABASE_DRIVER mongo
90 ENV OSMNBI_DATABASE_URI   mongodb://mongo:27017
91 #ENV OSMNBI_DATABASE_HOST   mongo
92 #ENV OSMNBI_DATABASE_PORT   27017
93
94 # web
95 ENV OSMNBI_STATIC_DIR      /app/osm_nbi/html_public
96 # message
97 ENV OSMNBI_MESSAGE_DRIVER  kafka
98 ENV OSMNBI_MESSAGE_HOST    kafka
99 ENV OSMNBI_MESSAGE_PORT    9092
100 # logs
101 ENV OSMNBI_LOG_FILE        /app/log/nbi.log
102 ENV OSMNBI_LOG_LEVEL       DEBUG
103 # authentication
104 ENV OSMNBI_AUTHENTICATION_BACKEND               internal
105 #ENV OSMNBI_AUTHENTICATION_BACKEND               keystone
106 #ENV OSMNBI_AUTHENTICATION_AUTH_URL              keystone
107 #ENV OSMNBI_AUTHENTICATION_AUTH_PORT             5000
108 #ENV OSMNBI_AUTHENTICATION_USER_DOMAIN_NAME      default
109 #ENV OSMNBI_AUTHENTICATION_PROJECT_DOMAIN_NAME   default
110 #ENV OSMNBI_AUTHENTICATION_SERVICE_USERNAME      nbi
111 #ENV OSMNBI_AUTHENTICATION_SERVICE_PASSWORD      nbi
112 #ENV OSMNBI_AUTHENTICATION_SERVICE_PROJECT       service
113 #prometheus
114 ENV OSMNBI_PROMETHEUS_HOST                      prometheus
115 ENV OSMNBI_PROMETHEUS_PORT                      9090
116
117 HEALTHCHECK --start-period=120s --interval=10s --timeout=5s --retries=5 \
118   CMD curl -k https://localhost:9999/osm/ | grep Welcome || exit 1
119
120 # Run app.py when the container launches
121 CMD python3 -m osm_nbi.nbi
122