Add Dockerfiles for run/build. 32/14332/3
authorEd Warnicke <hagbard@gmail.com>
Wed, 15 Aug 2018 16:43:54 +0000 (11:43 -0500)
committerDamjan Marion <dmarion@me.com>
Mon, 20 Aug 2018 20:24:53 +0000 (20:24 +0000)
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>
extras/docker/build/Dockerfile.bionic [new file with mode: 0644]
extras/docker/build/Dockerfile.centos7 [new file with mode: 0644]
extras/docker/build/Dockerfile.xenial [new file with mode: 0644]
extras/docker/run/Dockerfile.bionic [new file with mode: 0644]
extras/docker/run/Dockerfile.centos7 [new file with mode: 0644]
extras/docker/run/Dockerfile.xenial [new file with mode: 0644]

diff --git a/extras/docker/build/Dockerfile.bionic b/extras/docker/build/Dockerfile.bionic
new file mode 100644 (file)
index 0000000..61d57c2
--- /dev/null
@@ -0,0 +1,14 @@
+# Run from top of vpp repo with command:
+# docker build -f extras/docker/build/Dockerfile.bionic .
+FROM ubuntu:bionic
+ARG REPO=master
+COPY . /vpp
+WORKDIR /vpp
+RUN apt-get update
+RUN apt-get -y install make sudo git curl
+RUN curl -s https://packagecloud.io/install/repositories/fdio/${REPO}/script.deb.sh |  bash
+RUN apt-get update
+RUN apt-get -y install vpp-dpdk-dev
+RUN UNATTENDED=y make install-dep
+RUN make pkg-deb
+CMD ["/bin/bash"]
\ No newline at end of file
diff --git a/extras/docker/build/Dockerfile.centos7 b/extras/docker/build/Dockerfile.centos7
new file mode 100644 (file)
index 0000000..b466feb
--- /dev/null
@@ -0,0 +1,11 @@
+# Run from top of vpp repo with command:
+# docker build -f extras/docker/build/Dockerfile.centos7 .
+FROM centos:7.3.1611
+ARG REPO=master
+COPY . /vpp
+WORKDIR /vpp
+RUN curl -s https://packagecloud.io/install/repositories/fdio/${REPO}/script.rpm.sh |  bash
+RUN yum install -y vpp-dpdk-devel make sudo
+RUN UNATTENDED=y make install-dep
+RUN make pkg-rpm
+CMD ["/bin/bash"]
\ No newline at end of file
diff --git a/extras/docker/build/Dockerfile.xenial b/extras/docker/build/Dockerfile.xenial
new file mode 100644 (file)
index 0000000..0a00246
--- /dev/null
@@ -0,0 +1,14 @@
+# Run from top of vpp repo with command:
+# docker build -f extras/docker/build/Dockerfile.xenial .
+FROM ubuntu:xenial
+ARG REPO=master
+COPY . /vpp
+WORKDIR /vpp
+RUN apt-get update
+RUN apt-get -y install make sudo git curl
+RUN curl -s https://packagecloud.io/install/repositories/fdio/${REPO}/script.deb.sh |  bash
+RUN apt-get update
+RUN apt-get -y install vpp-dpdk-dev
+RUN UNATTENDED=y make install-dep
+RUN make pkg-deb
+CMD ["/bin/bash"]
\ No newline at end of file
diff --git a/extras/docker/run/Dockerfile.bionic b/extras/docker/run/Dockerfile.bionic
new file mode 100644 (file)
index 0000000..f7a8603
--- /dev/null
@@ -0,0 +1,12 @@
+FROM ubuntu:bionic
+ARG DEBIAN_FRONTEND=noninteractive
+ARG REPO=release
+RUN apt-get update
+RUN apt-get -y install curl
+RUN curl -s https://packagecloud.io/install/repositories/fdio/${REPO}/script.deb.sh |  bash
+RUN apt-get update
+RUN apt-get -y install vpp vpp-plugins
+RUN apt-get -y purge curl
+RUN apt-get -y clean
+CMD ["/usr/bin/vpp","-c","/etc/vpp/startup.conf"]
+
diff --git a/extras/docker/run/Dockerfile.centos7 b/extras/docker/run/Dockerfile.centos7
new file mode 100644 (file)
index 0000000..8c27abd
--- /dev/null
@@ -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
diff --git a/extras/docker/run/Dockerfile.xenial b/extras/docker/run/Dockerfile.xenial
new file mode 100644 (file)
index 0000000..ba1a2ae
--- /dev/null
@@ -0,0 +1,12 @@
+FROM ubuntu:xenial
+ARG DEBIAN_FRONTEND=noninteractive
+ARG REPO=release
+RUN apt-get update
+RUN apt-get -y install curl
+RUN curl -s https://packagecloud.io/install/repositories/fdio/${REPO}/script.deb.sh |  bash
+RUN apt-get update
+RUN apt-get -y install vpp vpp-plugins
+RUN apt-get -y purge curl
+RUN apt-get -y clean
+CMD ["/usr/bin/vpp","-c","/etc/vpp/startup.conf"]
+