X-Git-Url: https://gerrit.opnfv.org/gerrit/gitweb?a=blobdiff_plain;f=docker%2FDockerfile;h=d30ef22e4beb4cad6061e7ccce945bf7713c7b27;hb=efc678c9d3843dcfd373b5749a88c51228b0b27c;hp=93335882390ddce18443b2b60fd3fdb2338ae5a4;hpb=230d84f20f70ebcbafa1f8f3d32461649c8c49b1;p=nfvbench.git diff --git a/docker/Dockerfile b/docker/Dockerfile index 9333588..d30ef22 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -1,8 +1,9 @@ # docker file for creating a container that has nfvbench installed and ready to use FROM ubuntu:16.04 -ENV TREX_VER "v2.29" -ENV NFVBENCH_TAG "1.0.7" +ENV TREX_VER "v2.32" +ENV NFVBENCH_TAG "1.2.1" +ENV VM_IMAGE_VER "0.5" RUN apt-get update && apt-get install -y \ git \ @@ -28,6 +29,7 @@ RUN apt-get update && apt-get install -y \ && cd / \ && git clone --depth 1 -b $NFVBENCH_TAG https://gerrit.opnfv.org/gerrit/nfvbench \ && cd /nfvbench && pip install -e . \ + && wget -O nfvbenchvm-$VM_IMAGE_VER.qcow2 http://artifacts.opnfv.org/nfvbench/images/nfvbenchvm_centos-$VM_IMAGE_VER.qcow2 \ && python ./docker/cleanup_generators.py \ && rm -rf /nfvbench/.git \ && apt-get remove -y wget git \