From 148cc01a56ab6502247d2445501ada6625f0cebf Mon Sep 17 00:00:00 2001 From: Ed Warnicke Date: Wed, 15 Aug 2018 11:43:54 -0500 Subject: 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 --- extras/docker/run/Dockerfile.bionic | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 extras/docker/run/Dockerfile.bionic (limited to 'extras/docker/run/Dockerfile.bionic') diff --git a/extras/docker/run/Dockerfile.bionic b/extras/docker/run/Dockerfile.bionic new file mode 100644 index 00000000000..f7a8603ca8a --- /dev/null +++ b/extras/docker/run/Dockerfile.bionic @@ -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"] + -- cgit 1.2.3-korg