blob: ba1a2ae03c6ab15f2c849fd447a11aff3a81646e [file] [log] [blame]
Ed Warnicke148cc012018-08-15 11:43:54 -05001FROM ubuntu:xenial
2ARG DEBIAN_FRONTEND=noninteractive
3ARG REPO=release
4RUN apt-get update
5RUN apt-get -y install curl
6RUN curl -s https://packagecloud.io/install/repositories/fdio/${REPO}/script.deb.sh | bash
7RUN apt-get update
8RUN apt-get -y install vpp vpp-plugins
9RUN apt-get -y purge curl
10RUN apt-get -y clean
11CMD ["/usr/bin/vpp","-c","/etc/vpp/startup.conf"]
12