Bug 1841: LTS Support
[osm/devops.git] / docker / MON / Dockerfile
1 #######################################################################################
2 # Copyright ETSI Contributors and Others.
3 #
4 # Licensed under the Apache License, Version 2.0 (the "License");
5 # you may not use this file except in compliance with the License.
6 # You may obtain 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,
12 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
13 # implied.
14 # See the License for the specific language governing permissions and
15 # limitations under the License.
16 #######################################################################################
17
18 FROM ubuntu:20.04 as INSTALL
19
20 ARG APT_PROXY
21 RUN if [ ! -z $APT_PROXY ] ; then \
22     echo "Acquire::http::Proxy \"$APT_PROXY\";" > /etc/apt/apt.conf.d/proxy.conf ;\
23     echo "Acquire::https::Proxy \"$APT_PROXY\";" >> /etc/apt/apt.conf.d/proxy.conf ;\
24     fi
25
26 RUN DEBIAN_FRONTEND=noninteractive apt-get --yes update && \
27     DEBIAN_FRONTEND=noninteractive apt-get --yes install \
28     gcc=4:9.3.* \
29     python3=3.8.* \
30     python3-dev=3.8.* \
31     python3-pip=20.0.2* \
32     python3-setuptools=45.2.* \
33     curl=7.68.*
34
35 RUN DEBIAN_FRONTEND=noninteractive apt-get --yes install \
36     openssh-client=1:8.*
37
38 ARG PYTHON3_OSM_COMMON_URL
39 ARG PYTHON3_OSM_MON_URL
40 ARG PYTHON3_N2VC_URL
41
42 RUN curl $PYTHON3_OSM_COMMON_URL -o osm_common.deb
43 RUN dpkg -i ./osm_common.deb
44
45 RUN curl $PYTHON3_N2VC_URL -o n2vc.deb
46 RUN dpkg -i ./n2vc.deb
47
48 RUN curl $PYTHON3_OSM_MON_URL -o osm_mon.deb
49 RUN dpkg -i ./osm_mon.deb
50
51 RUN pip3 install \
52     -r /usr/lib/python3/dist-packages/n2vc/requirements.txt \
53     -r /usr/lib/python3/dist-packages/osm_common/requirements.txt \
54     -r /usr/lib/python3/dist-packages/osm_mon/requirements.txt
55
56 #######################################################################################
57 FROM ubuntu:20.04 as FINAL
58
59 ARG APT_PROXY
60 RUN if [ ! -z $APT_PROXY ] ; then \
61     echo "Acquire::http::Proxy \"$APT_PROXY\";" > /etc/apt/apt.conf.d/proxy.conf ;\
62     echo "Acquire::https::Proxy \"$APT_PROXY\";" >> /etc/apt/apt.conf.d/proxy.conf ;\
63     fi
64
65 RUN DEBIAN_FRONTEND=noninteractive apt-get --yes update && \
66     DEBIAN_FRONTEND=noninteractive apt-get --yes install \
67     python3-minimal=3.8.* \
68     && rm -rf /var/lib/apt/lists/*
69
70 RUN DEBIAN_FRONTEND=noninteractive apt-get --yes update && \
71     DEBIAN_FRONTEND=noninteractive apt-get --yes install \
72     ca-certificates \
73     && rm -rf /var/lib/apt/lists/*
74
75 COPY --from=INSTALL /usr/lib/python3/dist-packages /usr/lib/python3/dist-packages
76 COPY --from=INSTALL /usr/local/lib/python3.8/dist-packages  /usr/local/lib/python3.8/dist-packages
77 COPY --from=INSTALL /usr/bin/osm* /usr/bin/
78 COPY --from=INSTALL /usr/bin/scp /usr/bin/scp
79 COPY --from=INSTALL /usr/bin/ssh-keygen /usr/bin/ssh-keygen
80 COPY --from=INSTALL /usr/bin/ssh /usr/bin/ssh
81 COPY --from=INSTALL /usr/lib/x86_64-linux-gnu/ /usr/lib/x86_64-linux-gnu/
82 COPY --from=INSTALL /lib/x86_64-linux-gnu/ /lib/x86_64-linux-gnu/
83
84 COPY scripts/ /app/osm_mon/scripts/
85
86 # Creating the user for the app
87 RUN groupadd -g 1000 appuser && \
88     useradd -u 1000 -g 1000 -d /app appuser && \
89     mkdir -p /app/osm_mon && \
90     mkdir -p /app/storage/kafka && \
91     mkdir /app/log && \
92     chown -R appuser:appuser /app
93
94 WORKDIR /app/osm_mon
95
96 # Changing the security context
97 USER appuser
98
99 ########################################################################
100
101 ENV OSMMON_MESSAGE_DRIVER kafka
102 ENV OSMMON_MESSAGE_HOST kafka
103 ENV OSMMON_MESSAGE_PORT 9092
104
105 ENV OSMMON_DATABASE_DRIVER mongo
106 ENV OSMMON_DATABASE_URI mongodb://mongo:27017
107
108 ENV OSMMON_SQL_DATABASE_URI sqlite:///mon_sqlite.db
109 ENV OSMMON_OPENSTACK_DEFAULT_GRANULARITY 300
110 ENV OSMMON_GLOBAL_REQUEST_TIMEOUT 10
111 ENV OSMMON_GLOBAL_LOGLEVEL INFO
112 ENV OSMMON_VCA_HOST localhost
113 ENV OSMMON_VCA_SECRET secret
114 ENV OSMMON_VCA_USER admin
115 ENV OSMMON_VCA_CACERT cacert
116 ENV OSMMON_DATABASE_COMMONKEY changeme
117 ENV OSMMON_COLLECTOR_INTERVAL 30
118 ENV OSMMON_EVALUATOR_INTERVAL 30
119 ENV OSMMON_PROMETHEUS_URL http://prometheus:9090
120 ENV OSMMON_GRAFANA_URL http://grafana:3000
121 ENV OSMMON_GRAFANA_USER admin
122 ENV OSMMON_GRAFANA_PASSWORD admin
123
124 EXPOSE 8000
125
126 HEALTHCHECK --start-period=120s --interval=5s --timeout=2s --retries=12\
127   CMD osm-mon-healthcheck || exit 1
128
129 CMD /bin/bash scripts/start.sh