Add Dockerfiles for run/build.
[vpp.git] / extras / docker / run / Dockerfile.bionic
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"]
+