summaryrefslogtreecommitdiffstats
path: root/reporting/docker
diff options
context:
space:
mode:
authorchenjiankun <chenjiankun1@huawei.com>2016-12-16 07:34:13 +0000
committerchenjiankun <chenjiankun1@huawei.com>2016-12-16 10:17:19 +0000
commitfaf50c5d000ccf3a7523ba153798b20c44bd7142 (patch)
tree26405178dc5df3ceb0f5957fe4677ec87aca3394 /reporting/docker
parentf6f24d49702a4680b40b3f5bbf809951ef44ac37 (diff)
Bugfix: reporting docker image build failed
JIRA: RELENG-181 Since we just decide to use dynamic server, we need to deploy a dynamic server such as tornado . But when I use the Dockerfile to build image, it failed due to some reasons. So I need fix it first and then deploy the dynamic server. Then we can use this command: docker run -it -d -p 8080:80 opnfv/releng:latest And visit reporting page by http://server_ip:8080/display/... Change-Id: Id04575c7b38e4c07625ce217d23ebca1c5bf0191 Signed-off-by: chenjiankun <chenjiankun1@huawei.com>
Diffstat (limited to 'reporting/docker')
-rw-r--r--reporting/docker/Dockerfile6
-rwxr-xr-xreporting/docker/reporting.sh11
-rw-r--r--reporting/docker/requirements.pip1
3 files changed, 9 insertions, 9 deletions
diff --git a/reporting/docker/Dockerfile b/reporting/docker/Dockerfile
index 789df91..b5fe098 100644
--- a/reporting/docker/Dockerfile
+++ b/reporting/docker/Dockerfile
@@ -29,15 +29,15 @@ ENV CONFIG_REPORTING_YAML /home/opnfv/utils/test/reporting/reporting.yaml
# Packaged dependencies
RUN apt-get update && apt-get install -y \
ssh \
+python-pip \
git-core \
wkhtmltopdf \
--no-install-recommends
RUN pip install --upgrade pip
-RUN pip install -r ${working_dir}/docker/requirements.txt
RUN git clone --depth 1 https://gerrit.opnfv.org/gerrit/releng /home/opnfv
+RUN pip install -r ${working_dir}/docker/requirements.pip
WORKDIR ${working_dir}
-CMD ["bash", "./docker/reporting.sh"]
-CMD ["bash", "mv display /usr/share/nginx/html"]
+RUN docker/reporting.sh
diff --git a/reporting/docker/reporting.sh b/reporting/docker/reporting.sh
index 5d4ea11..d6b173c 100755
--- a/reporting/docker/reporting.sh
+++ b/reporting/docker/reporting.sh
@@ -1,5 +1,4 @@
#!/bin/bash
-cd ..
export PYTHONPATH="${PYTHONPATH}:."
export CONFIG_REPORTING_YAML=./reporting.yaml
@@ -20,7 +19,7 @@ do
done
# copy images, js, css, 3rd_party
-cp -Rf 3rd_party display
+cp -Rf 3rd_party display
cp -Rf css display
cp -Rf html/* display
cp -Rf img display
@@ -34,7 +33,7 @@ cp -Rf js display
if [ -z "$1" ]; then
echo "********************************"
- echo " Functest reporting "
+ echo " Functest reporting "
echo "********************************"
echo "reporting vIMS..."
python ./functest/reporting-vims.py
@@ -49,7 +48,7 @@ if [ -z "$1" ]; then
echo "Functest reporting status...OK"
echo "********************************"
- echo " Yardstick reporting "
+ echo " Yardstick reporting "
echo "********************************"
python ./yardstick/reporting-status.py
echo "Yardstick reporting status...OK"
@@ -58,8 +57,8 @@ else
reporting_type="status"
fi
echo "********************************"
- echo " $project/$reporting_type reporting "
+ echo " $project/$reporting_type reporting "
echo "********************************"
python ./$project/reporting-$reporting_type.py
fi
-
+mv display /usr/share/nginx/html
diff --git a/reporting/docker/requirements.pip b/reporting/docker/requirements.pip
index 21d5ba9..c1bf4b1 100644
--- a/reporting/docker/requirements.pip
+++ b/reporting/docker/requirements.pip
@@ -10,3 +10,4 @@
pdfkit==0.5.0
PyYAML==3.11
simplejson==3.8.1
+jinja2==2.8