148cc01a56
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>
11 lines
366 B
Docker
11 lines
366 B
Docker
# Run from top of vpp repo with command:
|
|
# docker build -f extras/docker/build/Dockerfile.centos7 .
|
|
FROM centos:7.3.1611
|
|
ARG REPO=master
|
|
COPY . /vpp
|
|
WORKDIR /vpp
|
|
RUN curl -s https://packagecloud.io/install/repositories/fdio/${REPO}/script.rpm.sh | bash
|
|
RUN yum install -y vpp-dpdk-devel make sudo
|
|
RUN UNATTENDED=y make install-dep
|
|
RUN make pkg-rpm
|
|
CMD ["/bin/bash"] |