blob: f7a8603ca8abff9017a6310dc296fc85d32baa75 [file] [log] [blame]
Ed Warnicke148cc012018-08-15 11:43:54 -05001FROM ubuntu:bionic
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