ad4a1579689faff5bfb74aa143dd7c4c5cd55f17
[barometer.git] / docker / barometer-collectd / Dockerfile
1 # Copyright 2017-2019 Intel Corporation and OPNFV. All rights reserved.
2 #
3 # Licensed under the Apache License, Version 2.0 (the "License");
4 # you may not use this file except in compliance with the License.
5 # You may obtain a copy of the License at
6 #
7 # http://www.apache.org/licenses/LICENSE-2.0
8 #
9 # Unless required by applicable law or agreed to in writing, software
10 # distributed under the License is distributed on an "AS IS" BASIS,
11 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 # See the License for the specific language governing permissions and
13 # limitations under the License.
14 #
15
16 FROM centos:8
17 RUN dnf update -y && \
18         dnf install -y which sudo git && \
19         dnf clean all && \
20         git config --global http.sslVerify false
21
22 ENV DOCKER y
23 ENV WITH_DPDK y
24 ENV COLLECTD_FLAVOR stable
25 ENV repos_dir /src
26
27 WORKDIR ${repos_dir}
28 RUN git clone https://gerrit.opnfv.org/gerrit/barometer
29
30 WORKDIR ${repos_dir}/barometer/systems
31 RUN sh ./build_base_machine.sh && \
32         dnf clean all && rm -rf /var/cache/dnf && \
33         cd ${repos_dir}/ && rm -rf barometer && \
34         useradd -ms /bin/bash collectd_exec && \
35         echo "collectd_exec ALL=(ALL) NOPASSWD: ALL" >> /etc/sudoers
36
37 COPY run_collectd.sh /run_collectd.sh
38 RUN chmod +x /run_collectd.sh
39
40 ENTRYPOINT ["/run_collectd.sh"]