diff options
author | Cédric Ollivier <cedric.ollivier@orange.com> | 2021-08-19 16:41:11 +0200 |
---|---|---|
committer | Cédric Ollivier <cedric.ollivier@orange.com> | 2021-08-19 16:41:11 +0200 |
commit | 56d89152af91b73ee32d74062e7c366ca7d72e47 (patch) | |
tree | 55010e5b086dc32428cb549334c8409f42498810 | |
parent | 8b86dd02328e331cc01b21bf1072e515bbd6db68 (diff) |
Fix py site-package path
Change-Id: Iab3ece39fa8cf1c5e0f62100e14b9fa2f5e3298a
Signed-off-by: Cédric Ollivier <cedric.ollivier@orange.com>
-rw-r--r-- | docker/core/Dockerfile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docker/core/Dockerfile b/docker/core/Dockerfile index 89e54fc9..6027f570 100644 --- a/docker/core/Dockerfile +++ b/docker/core/Dockerfile @@ -35,7 +35,7 @@ RUN apk -U upgrade && \ -c/src/requirements/upper-constraints.txt \ /src/functest-kubernetes && \ (cd /src/rally && patch -p1 < /tmp/Switch-to-threading.Thread-for-Rally-tasks.patch) && \ - (cd /usr/lib/python3.8/site-packages/xrally_kubernetes/ && \ + (cd /usr/lib/python3.9/site-packages/xrally_kubernetes/ && \ patch -p2 < /tmp/Try-a-quick-fix-vs-asynchronuous-issues.patch) && \ rm -rf /src/functest-kubernetes /tmp/Switch-to-threading.Thread-for-Rally-tasks.patch && \ bash -c "mkdir -p /var/lib/xtesting /home/opnfv" && \ |