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