diff options
author | Luc Provoost <luc.provoost@intel.com> | 2021-05-07 18:06:05 +0200 |
---|---|---|
committer | Luc Provoost <luc.provoost@intel.com> | 2021-05-10 09:14:45 +0200 |
commit | 1492024f49f6952fb9f99ac70d0ae1c26fb946ad (patch) | |
tree | a47373f099b38d76f54a767a5825f20b3c4c3295 /VNFs/DPPD-PROX/helper-scripts/rapid/xtesting/Dockerfile | |
parent | 0e9709a99633737364e8f3f5b475f30f0cfbddcb (diff) |
Fixing rapidxt for Xtesting
Changes were needed for installing the python rapid python package by
adding 2 new files: pyproject.toml & setup.cfg. Also fixed a bug in
rapidxt.py
Change-Id: Iac98b6068afef4a5f1a97459ea1109211607d53d
Signed-off-by: Luc Provoost <luc.provoost@intel.com>
Diffstat (limited to 'VNFs/DPPD-PROX/helper-scripts/rapid/xtesting/Dockerfile')
-rw-r--r-- | VNFs/DPPD-PROX/helper-scripts/rapid/xtesting/Dockerfile | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/VNFs/DPPD-PROX/helper-scripts/rapid/xtesting/Dockerfile b/VNFs/DPPD-PROX/helper-scripts/rapid/xtesting/Dockerfile index 299f8ef3..8a092def 100644 --- a/VNFs/DPPD-PROX/helper-scripts/rapid/xtesting/Dockerfile +++ b/VNFs/DPPD-PROX/helper-scripts/rapid/xtesting/Dockerfile @@ -1,5 +1,5 @@ ## -## Copyright (c) 2020 Intel Corporation +## Copyright (c) 2020-2021 Intel Corporation ## ## Licensed under the Apache License, Version 2.0 (the "License"); ## you may not use this file except in compliance with the License. @@ -22,8 +22,7 @@ ENV RAPID_TEST =rapid_tst009_throughput RUN git clone https://git.opnfv.org/samplevnf /samplevnf WORKDIR /samplevnf/VNFs/DPPD-PROX/helper-scripts/rapid -COPY rapid.env /samplevnf/VNFs/DPPD-PROX/helper-scripts/rapid/. -COPY rapid_key.pem /samplevnf/VNFs/DPPD-PROX/helper-scripts/rapid/. +RUN chmod 400 /samplevnf/VNFs/DPPD-PROX/helper-scripts/rapid/rapid_rsa_key COPY testcases.yaml /usr/lib/python3.8/site-packages/xtesting/ci/testcases.yaml RUN apk add python3-dev openssh-client && cd /samplevnf/VNFs/DPPD-PROX/helper-scripts/rapid/ && git init && pip3 install . CMD ["run_tests", "-t", "all"] |