diff options
author | ahothan <ahothan@cisco.com> | 2018-05-30 15:03:10 -0700 |
---|---|---|
committer | ahothan <ahothan@cisco.com> | 2018-05-30 15:07:18 -0700 |
commit | eef8ece12a26773ae2459d36225018430ef00ede (patch) | |
tree | d2cdb922d9e8f92594a0972c84f6c18d849cc542 /docker/Dockerfile | |
parent | f3fdcd28c6f4d8707de18afec5ca67f8b90d02c8 (diff) |
NFVBENCH-97 Fix container build issue (pip)1.5.1
Change-Id: If428c8b33d03db6ecac6b9dd2e480db541d947dd
Signed-off-by: ahothan <ahothan@cisco.com>
Diffstat (limited to 'docker/Dockerfile')
-rw-r--r-- | docker/Dockerfile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/docker/Dockerfile b/docker/Dockerfile index e3e0eab..ec738ee 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -2,7 +2,7 @@ FROM ubuntu:16.04 ENV TREX_VER "v2.32" -ENV NFVBENCH_TAG "1.5.0" +ENV NFVBENCH_TAG "1.5.1" ENV VM_IMAGE_VER "0.6" RUN apt-get update && apt-get install -y \ @@ -26,6 +26,7 @@ RUN apt-get update && apt-get install -y \ && rm -rf /opt/trex/$TREX_VER/automation/trex_control_plane/stl/trex_stl_lib \ && sed -i -e "s/2048 /512 /" -e "s/2048\"/512\"/" /opt/trex/$TREX_VER/trex-cfg \ && pip install -U pip pbr \ + && hash -r pip \ && pip install -U setuptools \ && cd / \ && git clone --depth 1 -b $NFVBENCH_TAG https://gerrit.opnfv.org/gerrit/nfvbench \ |