summaryrefslogtreecommitdiffstats
path: root/reporting/docker/Dockerfile
blob: ad278ce1e898547e4103690c6aa0063e9aace17f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
########################################
#   Docker container for OPNFV-REPORTING
########################################
# Purpose: run opnfv-reporting to provide consistent Testing reporting
#
# Maintained by Morgan Richomme
# Build:
#    $ docker build -t opnfv/testreporting:tag .
##
# All rights reserved. This program and the accompanying materials
# are made available under the terms of the Apache License, Version 2.0
# which accompanies this distribution, and is available at
# http://www.apache.org/licenses/LICENSE-2.0
#

FROM nginx:stable

MAINTAINER Morgan Richomme <morgan.richomme@orange.com>
LABEL version="danube.1.0" description="OPNFV Test Reporting Docker container"

ARG BRANCH=master

ENV HOME /home/opnfv
ENV working_dir /home/opnfv/utils/test/reporting
ENV TERM xterm
ENV COLORTERM gnome-terminal
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 \
nodejs \
npm \
supervisor \
--no-install-recommends

RUN pip install --upgrade pip

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}/api
RUN pip install -r requirements.txt
RUN python setup.py install

WORKDIR ${working_dir}
RUN docker/reporting.sh

expose 8000

CMD ["/usr/bin/supervisord"]