From: ahothan Date: Sat, 11 Aug 2018 16:51:49 +0000 (-0700) Subject: Remove hardcoded tag from Dockerfile and pick latest X-Git-Tag: 1.5.2^0 X-Git-Url: https://gerrit.opnfv.org/gerrit/gitweb?a=commitdiff_plain;h=refs%2Fchanges%2F75%2F60875%2F1;p=nfvbench.git Remove hardcoded tag from Dockerfile and pick latest Change-Id: Ib101e76d588c3576e76039a2fd90917216b0e646 Signed-off-by: ahothan --- 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 \