diff options
author | Stamatis Katsaounis <mokats@intracom-telecom.com> | 2018-11-28 10:43:33 +0200 |
---|---|---|
committer | Stamatis Katsaounis <mokats@intracom-telecom.com> | 2018-11-28 10:58:54 +0200 |
commit | 83c44e0acaed30f2388a69fd13ec806c38edfd73 (patch) | |
tree | 12408f8aa5814ea57e6381f2e99931b799f22a25 /opnfv_testapi/ui | |
parent | 2735ea8a2aef55ebb0a48b50d9a0e36cf3f63b94 (diff) |
Improve Docker deployment
JIRA: DOVETAIL-755
This patch improves Docker deployment. It removes the extra unwanted
container. In addition, it removes unused files. Finally, it fixes the
issue of python install where the static files of swagger where not
installed inside the api container.
Change-Id: Id74c88ab77182ed233f0eedad39ff8da245bb3dd
Signed-off-by: Stamatis Katsaounis <mokats@intracom-telecom.com>
Diffstat (limited to 'opnfv_testapi/ui')
-rw-r--r-- | opnfv_testapi/ui/root.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/opnfv_testapi/ui/root.py b/opnfv_testapi/ui/root.py index 5b2c922..7f970b2 100644 --- a/opnfv_testapi/ui/root.py +++ b/opnfv_testapi/ui/root.py @@ -4,7 +4,7 @@ from opnfv_testapi.common.config import CONF class RootHandler(GenericApiHandler): def get_template_path(self): - return CONF.static_path + return CONF.ui_static_path def get(self): self.render('testapi-ui/index.html') |