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