diff options
author | ting wu <ting.wu@enea.com> | 2018-05-08 13:51:47 +0200 |
---|---|---|
committer | ting wu <ting.wu@enea.com> | 2018-05-09 11:12:29 +0200 |
commit | e5c9c487105f0bbe6416e612da77f5c93b9b354c (patch) | |
tree | a38889f6dfc30c10586de06cf58b3a0790d5dfe5 /docker/Dockerfile | |
parent | fe8aac36f1f66c29bd68c4bc0e22c9de077a1fad (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>
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 5813f0245..62ea0d037 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" |