Add Dockerfiles for run/build.
build-root/docker/build/ contains Dockerfiles for building vpp
build-root/docker/run. contains Dockerfiles for creating
Docker containers for runnining vpp.
xenial, bionic, and centos7 are supported
Change-Id: I90dd96ed9e01da14eead0395e597219717eead88
Signed-off-by: Ed Warnicke <hagbard@gmail.com>
diff --git a/extras/docker/run/Dockerfile.centos7 b/extras/docker/run/Dockerfile.centos7
new file mode 100644
index 0000000..8c27abd
--- /dev/null
+++ b/extras/docker/run/Dockerfile.centos7
@@ -0,0 +1,5 @@
+FROM centos:7.3.1611
+ARG REPO=release
+RUN curl -s https://packagecloud.io/install/repositories/fdio/${REPO}/script.rpm.sh | bash
+RUN yum -y install vpp vpp-plugins
+CMD ["/usr/bin/vpp","-c","/etc/vpp/startup.conf"]
\ No newline at end of file