aboutsummaryrefslogtreecommitdiffstats
path: root/extras/docker/run/Dockerfile.bionic
blob: f7a8603ca8abff9017a6310dc296fc85d32baa75 (plain)
1
2
3
4
5
6
7
8
9
10
11
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"]