summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorahothan <ahothan@cisco.com>2018-08-11 09:51:49 -0700
committerahothan <ahothan@cisco.com>2018-08-11 09:52:39 -0700
commit6049b1fe31acf0cf62d978df04b3b671cd35f116 (patch)
tree2cde49ecac31c05924a71633485b37f3b567413c
parentb270dc95cf227ccb6d8a952143a8dc15f19c3d75 (diff)
Remove hardcoded tag from Dockerfile and pick latest1.5.2
Change-Id: Ib101e76d588c3576e76039a2fd90917216b0e646 Signed-off-by: ahothan <ahothan@cisco.com>
-rw-r--r--docker/Dockerfile3
1 files changed, 1 insertions, 2 deletions
diff --git a/docker/Dockerfile b/docker/Dockerfile
index ec738ee..cd59fa0 100644
--- a/docker/Dockerfile
+++ b/docker/Dockerfile
@@ -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 \