[container][experimental] Update experimental container
[barometer.git] / docker / barometer-collectd-experimental / 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 COLLECTD_FLAVOR experimental
24 ENV WITH_DPDK y
25 ENV repos_dir /src
26
27 WORKDIR ${repos_dir}
28 RUN mkdir -p ${repos_dir}/barometer
29 COPY . ${repos_dir}/barometer
30 COPY docker/barometer-collectd-experimental/collectd_apply_pull_request.sh \
31      ${repos_dir}/barometer/src/collectd/
32
33 # copying additional experimental configs on top of configs for 'main'
34 # branch release
35 COPY docker/barometer-collectd-experimental/experimental-configs/* \
36      ${repos_dir}/barometer/src/collectd/collectd_sample_configs-master/
37
38 WORKDIR ${repos_dir}/barometer/systems
39 RUN sh ./build_base_machine.sh && \
40         dnf clean all && rm -rf /var/cache/dnf && \
41         useradd -ms /bin/bash collectd_exec && \
42         echo "collectd_exec ALL=(ALL) NOPASSWD: ALL" >> /etc/sudoers
43
44 COPY docker/barometer-collectd-experimental/run_collectd.sh /run_collectd.sh
45 RUN chmod +x /run_collectd.sh
46
47 ENTRYPOINT ["/run_collectd.sh"]