Remove hardcoded tag from Dockerfile and pick latest 75/60875/1 1.5.2
authorahothan <ahothan@cisco.com>
Sat, 11 Aug 2018 16:51:49 +0000 (09:51 -0700)
committerahothan <ahothan@cisco.com>
Sat, 11 Aug 2018 16:52:39 +0000 (09:52 -0700)
Change-Id: Ib101e76d588c3576e76039a2fd90917216b0e646
Signed-off-by: ahothan <ahothan@cisco.com>
docker/Dockerfile

index ec738ee..cd59fa0 100644 (file)
@@ -2,7 +2,6 @@
 FROM ubuntu:16.04
 
 ENV TREX_VER "v2.32"
-ENV NFVBENCH_TAG "1.5.1"
 ENV VM_IMAGE_VER "0.6"
 
 RUN apt-get update && apt-get install -y \
@@ -29,7 +28,7 @@ RUN apt-get update && apt-get install -y \
        && hash -r pip \
        && pip install -U setuptools \
        && cd / \
-       && git clone --depth 1 -b $NFVBENCH_TAG https://gerrit.opnfv.org/gerrit/nfvbench \
+       && git clone --depth 1 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 \