Merge "Add support for 'collectd-master' container"
[barometer.git] / docker / barometer-collectd / Dockerfile
1 FROM centos:7
2 RUN yum update -y && \
3         yum install -y which sudo git && \
4         yum clean all && \
5         git config --global http.sslVerify false
6
7 ENV DOCKER y
8 ENV repos_dir /src
9 ENV openstack_plugins /src/barometer/src/collectd-openstack-plugins
10
11 WORKDIR ${repos_dir}
12 RUN git clone https://gerrit.opnfv.org/gerrit/barometer
13 WORKDIR ${repos_dir}/barometer/systems
14 RUN sh ./build_base_machine.sh && \
15         useradd -ms /bin/bash collectd_exec && \
16         echo "collectd_exec ALL=(ALL) NOPASSWD: ALL" >> /etc/sudoers
17
18 WORKDIR ${openstack_plugins}
19 RUN make && \
20         pip install --upgrade pip && \
21         pip install -r ${openstack_plugins}/collectd-openstack-plugins/requirements.txt
22
23 COPY run_collectd.sh /run_collectd.sh
24 RUN chmod +x /run_collectd.sh
25
26 ENTRYPOINT ["/run_collectd.sh"]