Update containers to CentOS Stream 8
[barometer.git] / docker / barometer-collectd / Dockerfile
1 # Copyright 2017-2021 Intel Corporation, Anuket and others.
2 # All rights reserved.
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 implied.
13 # See the License for the specific language governing permissions and
14 # limitations under the License.
15 #
16
17 FROM quay.io/centos/centos:stream8
18 RUN dnf update -y && \
19         dnf install -y which sudo git-core && \
20         dnf clean all && \
21         git config --global http.sslVerify false
22
23 ENV DOCKER y
24 ENV WITH_DPDK y
25 ENV COLLECTD_FLAVOR stable
26 ENV repos_dir /src
27
28 WORKDIR ${repos_dir}
29 RUN git clone https://gerrit.opnfv.org/gerrit/barometer
30
31 WORKDIR ${repos_dir}/barometer/systems
32 RUN sh ./build_base_machine.sh && \
33         dnf clean all && rm -rf /var/cache/dnf && \
34         cd ${repos_dir}/ && rm -rf barometer && \
35         useradd -ms /bin/bash collectd_exec && \
36         echo "collectd_exec ALL=(ALL) NOPASSWD: ALL" >> /etc/sudoers
37
38 COPY run_collectd.sh /run_collectd.sh
39 RUN chmod +x /run_collectd.sh
40
41 ENTRYPOINT ["/run_collectd.sh"]