diff options
author | ting wu <ting.wu@enea.com> | 2018-05-08 13:51:47 +0200 |
---|---|---|
committer | rexlee8776 <limingjiang@huawei.com> | 2018-06-30 09:55:52 +0000 |
commit | 02f4d1c0ff5583177cd65d6fc60a116ca109adc8 (patch) | |
tree | d4e980958a9f10c24388f525f8f444a5d2297717 /docker/Dockerfile | |
parent | 266baa2694e397e2a449ba15d08046ef5baeab9a (diff) |
Bug Fix: correct the file path to build docker file
To be able to build a docker file, the path to file
"exec_tests.sh" should be modifed from .docker/exec_tests.sh
to ./exec_tests.sh.
JIRA: YARDSTICK-1157
Change-Id: I0f707ba579039d0efc8f2185b596e23b901c09df
Signed-off-by: ting wu <ting.wu@enea.com>
(cherry picked from commit e5c9c487105f0bbe6416e612da77f5c93b9b354c)
Diffstat (limited to 'docker/Dockerfile')
-rw-r--r-- | docker/Dockerfile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docker/Dockerfile b/docker/Dockerfile index d17108e61..84e364017 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -51,7 +51,7 @@ EXPOSE 5000 5672 ADD http://download.cirros-cloud.net/0.3.5/cirros-0.3.5-x86_64-disk.img ${IMAGE_DIR} ADD http://cloud-images.ubuntu.com/xenial/current/xenial-server-cloudimg-amd64-disk1.img ${IMAGE_DIR} -COPY ./docker/exec_tests.sh /usr/local/bin/ +COPY ./exec_tests.sh /usr/local/bin/ ENV NSB_DIR="/opt/nsb_bin" ENV PYTHONPATH="${PYTHONPATH}:${NSB_DIR}/trex_client:${NSB_DIR}/trex_client/stl" |