blob: 0a00246a97f6b901da52f065ae9bb796146b6b0f [file] [log] [blame]
Ed Warnicke148cc012018-08-15 11:43:54 -05001# Run from top of vpp repo with command:
2# docker build -f extras/docker/build/Dockerfile.xenial .
3FROM ubuntu:xenial
4ARG REPO=master
5COPY . /vpp
6WORKDIR /vpp
7RUN apt-get update
8RUN apt-get -y install make sudo git curl
9RUN curl -s https://packagecloud.io/install/repositories/fdio/${REPO}/script.deb.sh | bash
10RUN apt-get update
11RUN apt-get -y install vpp-dpdk-dev
12RUN UNATTENDED=y make install-dep
13RUN make pkg-deb
14CMD ["/bin/bash"]