Move lcm certificate to lcm folder in OSM helm chart
[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 update && \
36     DEBIAN_FRONTEND=noninteractive apt-get --yes install \
37     openssh-client=1:8.*
38
39 ARG PYTHON3_OSM_COMMON_URL
40 ARG PYTHON3_OSM_MON_URL
41 ARG PYTHON3_N2VC_URL
42
43 RUN curl $PYTHON3_OSM_COMMON_URL -o osm_common.deb
44 RUN dpkg -i ./osm_common.deb
45
46 RUN curl $PYTHON3_N2VC_URL -o n2vc.deb
47 RUN dpkg -i ./n2vc.deb
48
49 RUN curl $PYTHON3_OSM_MON_URL -o osm_mon.deb
50 RUN dpkg -i ./osm_mon.deb
51
52 RUN pip3 install \
53     -r /usr/lib/python3/dist-packages/n2vc/requirements.txt \
54     -r /usr/lib/python3/dist-packages/osm_common/requirements.txt \
55     -r /usr/lib/python3/dist-packages/osm_mon/requirements.txt
56
57 #######################################################################################
58 FROM ubuntu:20.04 as FINAL
59
60 ARG APT_PROXY
61 RUN if [ ! -z $APT_PROXY ] ; then \
62     echo "Acquire::http::Proxy \"$APT_PROXY\";" > /etc/apt/apt.conf.d/proxy.conf ;\
63     echo "Acquire::https::Proxy \"$APT_PROXY\";" >> /etc/apt/apt.conf.d/proxy.conf ;\
64     fi
65
66 RUN DEBIAN_FRONTEND=noninteractive apt-get --yes update && \
67     DEBIAN_FRONTEND=noninteractive apt-get --yes install \
68     python3-minimal=3.8.* \
69     && rm -rf /var/lib/apt/lists/*
70
71 RUN DEBIAN_FRONTEND=noninteractive apt-get --yes update && \
72     DEBIAN_FRONTEND=noninteractive apt-get --yes install \
73     ca-certificates \
74     && rm -rf /var/lib/apt/lists/*
75
76 COPY --from=INSTALL /usr/lib/python3/dist-packages /usr/lib/python3/dist-packages
77 COPY --from=INSTALL /usr/local/lib/python3.8/dist-packages  /usr/local/lib/python3.8/dist-packages
78 COPY --from=INSTALL /usr/bin/osm* /usr/bin/
79 COPY --from=INSTALL /usr/bin/scp /usr/bin/scp
80 COPY --from=INSTALL /usr/bin/ssh-keygen /usr/bin/ssh-keygen
81 COPY --from=INSTALL /usr/bin/ssh /usr/bin/ssh
82 COPY --from=INSTALL /usr/lib/x86_64-linux-gnu/ /usr/lib/x86_64-linux-gnu/
83 COPY --from=INSTALL /lib/x86_64-linux-gnu/ /lib/x86_64-linux-gnu/
84
85 COPY scripts/ /app/osm_mon/scripts/
86
87 # Creating the user for the app
88 RUN groupadd -g 1000 appuser && \
89     useradd -u 1000 -g 1000 -d /app appuser && \
90     mkdir -p /app/osm_mon && \
91     mkdir -p /app/storage/kafka && \
92     mkdir /app/log && \
93     chown -R appuser:appuser /app
94
95 WORKDIR /app/osm_mon
96
97 # Changing the security context
98 USER appuser
99
100 ########################################################################
101
102 ENV OSMMON_MESSAGE_DRIVER kafka
103 ENV OSMMON_MESSAGE_HOST kafka
104 ENV OSMMON_MESSAGE_PORT 9092
105
106 ENV OSMMON_DATABASE_DRIVER mongo
107 ENV OSMMON_DATABASE_URI mongodb://mongo:27017
108
109 ENV OSMMON_SQL_DATABASE_URI sqlite:///mon_sqlite.db
110 ENV OSMMON_OPENSTACK_DEFAULT_GRANULARITY 300
111 ENV OSMMON_GLOBAL_REQUEST_TIMEOUT 10
112 ENV OSMMON_GLOBAL_LOGLEVEL INFO
113 ENV OSMMON_VCA_HOST localhost
114 ENV OSMMON_VCA_SECRET secret
115 ENV OSMMON_VCA_USER admin
116 ENV OSMMON_VCA_CACERT cacert
117 ENV OSMMON_DATABASE_COMMONKEY changeme
118 ENV OSMMON_COLLECTOR_INTERVAL 30
119 ENV OSMMON_EVALUATOR_INTERVAL 30
120 ENV OSMMON_PROMETHEUS_URL http://prometheus:9090
121 ENV OSMMON_GRAFANA_URL http://grafana:3000
122 ENV OSMMON_GRAFANA_USER admin
123 ENV OSMMON_GRAFANA_PASSWORD admin
124
125 EXPOSE 8000
126
127 HEALTHCHECK --start-period=120s --interval=5s --timeout=2s --retries=12\
128   CMD osm-mon-healthcheck || exit 1
129
130 CMD /bin/bash scripts/start.sh