Update collectd tags to use main instead of master
[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:7
17 RUN yum update -y && \
18         yum install -y which sudo git && \
19         yum 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 ENV openstack_plugins /src/barometer/src/collectd-openstack-plugins
27
28 WORKDIR ${repos_dir}
29 RUN mkdir -p ${repos_dir}/barometer
30 COPY . ${repos_dir}/barometer
31 COPY docker/barometer-collectd-experimental/collectd_apply_pull_request.sh \
32      ${repos_dir}/barometer/src/collectd/
33
34 # copying additional experimental configs on top of configs for 'main'
35 # branch release
36 COPY docker/barometer-collectd-experimental/experimental-configs/* \
37      ${repos_dir}/barometer/src/collectd/collectd_sample_configs-master/
38
39 WORKDIR ${repos_dir}/barometer/systems
40 RUN sh ./build_base_machine.sh && \
41         useradd -ms /bin/bash collectd_exec && \
42         echo "collectd_exec ALL=(ALL) NOPASSWD: ALL" >> /etc/sudoers
43
44 WORKDIR ${openstack_plugins}
45 RUN make && \
46         pip install --upgrade pip && \
47         pip install -r ${openstack_plugins}/collectd-openstack-plugins/requirements.txt
48
49 COPY docker/barometer-collectd-experimental/run_collectd.sh /run_collectd.sh
50 RUN chmod +x /run_collectd.sh
51
52 ENTRYPOINT ["/run_collectd.sh"]