aboutsummaryrefslogtreecommitdiffstats
path: root/docker/Dockerfile
diff options
context:
space:
mode:
Diffstat (limited to 'docker/Dockerfile')
-rw-r--r--docker/Dockerfile22
1 files changed, 0 insertions, 22 deletions
diff --git a/docker/Dockerfile b/docker/Dockerfile
deleted file mode 100644
index dd3a8c0b..00000000
--- a/docker/Dockerfile
+++ /dev/null
@@ -1,22 +0,0 @@
-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
-ENV openstack_plugins /src/barometer/src/collectd-openstack-plugins
-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
-
-WORKDIR ${openstack_plugins}
-RUN make
-
-COPY run_collectd.sh /run_collectd.sh
-RUN chmod +x /run_collectd.sh