barometer-collectd: Add support for DPDK in 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 WITH_DPDK y
9 ENV repos_dir /src
10 ENV openstack_plugins /src/barometer/src/collectd-openstack-plugins
11
12 WORKDIR ${repos_dir}
13 RUN git clone https://gerrit.opnfv.org/gerrit/barometer
14 WORKDIR ${repos_dir}/barometer/systems
15 RUN sh ./build_base_machine.sh && \
16         useradd -ms /bin/bash collectd_exec && \
17         echo "collectd_exec ALL=(ALL) NOPASSWD: ALL" >> /etc/sudoers
18
19 WORKDIR ${openstack_plugins}
20 RUN make && \
21         pip install --upgrade pip && \
22         pip install -r ${openstack_plugins}/collectd-openstack-plugins/requirements.txt
23
24 COPY run_collectd.sh /run_collectd.sh
25 RUN chmod +x /run_collectd.sh
26
27 ENTRYPOINT ["/run_collectd.sh"]