aboutsummaryrefslogtreecommitdiffstats
path: root/docker/Dockerfile
blob: f2005682e37cc6499756bab4953ada2d221eb3fd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
FROM centos:7
RUN yum update -y
RUN yum install -y which sudo
RUN yum install -y git
ENV DOCKER y
ENV repos_dir /src

RUN git config --global http.sslVerify false
WORKDIR ${repos_dir}
RUN git clone https://gerrit.opnfv.org/gerrit/barometer
WORKDIR ${repos_dir}/barometer/systems
RUN sh ./build_base_machine.sh
RUN useradd -ms /bin/bash collectd_exec
RUN echo "collectd_exec ALL=(ALL) NOPASSWD: ALL" >> /etc/sudoers

COPY run_collectd.sh /run_collectd.sh
RUN chmod +x /run_collectd.sh