diff options
author | Ed Warnicke <hagbard@gmail.com> | 2018-08-15 11:43:54 -0500 |
---|---|---|
committer | Damjan Marion <dmarion@me.com> | 2018-08-20 20:24:53 +0000 |
commit | 148cc01a56ab6502247d2445501ada6625f0cebf (patch) | |
tree | ba5d395f39703565a9b56fc97c5c52941a76d006 /extras/docker/build/Dockerfile.bionic | |
parent | 052c2dc7e1fb5c9ec793371b48b988cfeed1c87f (diff) |
Add Dockerfiles for run/build.
build-root/docker/build/ contains Dockerfiles for building vpp
build-root/docker/run. contains Dockerfiles for creating
Docker containers for runnining vpp.
xenial, bionic, and centos7 are supported
Change-Id: I90dd96ed9e01da14eead0395e597219717eead88
Signed-off-by: Ed Warnicke <hagbard@gmail.com>
Diffstat (limited to 'extras/docker/build/Dockerfile.bionic')
-rw-r--r-- | extras/docker/build/Dockerfile.bionic | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/extras/docker/build/Dockerfile.bionic b/extras/docker/build/Dockerfile.bionic new file mode 100644 index 00000000000..61d57c26c7d --- /dev/null +++ b/extras/docker/build/Dockerfile.bionic @@ -0,0 +1,14 @@ +# Run from top of vpp repo with command: +# docker build -f extras/docker/build/Dockerfile.bionic . +FROM ubuntu:bionic +ARG REPO=master +COPY . /vpp +WORKDIR /vpp +RUN apt-get update +RUN apt-get -y install make sudo git 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-dpdk-dev +RUN UNATTENDED=y make install-dep +RUN make pkg-deb +CMD ["/bin/bash"]
\ No newline at end of file |