9565bdb4194d24e3963ad15ced24e5a66cf4a8e5
[barometer.git] / docker / barometer-collectd-experimental / 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 centos:8
18
19 ARG COLLECTD_FLAVOR=experimental
20 ARG COLLECTD_PULL_REQUESTS=
21 ARG WITH_DPDK=n
22 ENV DOCKER y
23 ENV repos_dir /src
24
25 RUN mkdir -p ${repos_dir}/barometer
26 COPY . ${repos_dir}/barometer
27
28 WORKDIR ${repos_dir}/barometer/systems
29 RUN ./build_base_machine.sh && \
30         dnf clean all && rm -rf /var/cache/dnf && \
31         useradd -ms /bin/bash collectd_exec && \
32         echo "collectd_exec ALL=(ALL) NOPASSWD: ALL" >> /etc/sudoers
33
34 COPY docker/barometer-collectd-experimental/run_collectd.sh /run_collectd.sh
35 RUN chmod +x /run_collectd.sh
36
37 ENTRYPOINT ["/run_collectd.sh"]