summaryrefslogtreecommitdiffstats
path: root/reporting/docker/Dockerfile
blob: 630a4d8ac98406593f3a30ccf8c24dd5da652488 (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
55
56
57
58
59
########################################
#   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="1.0" description="OPNFV Test Reporting Docker container"

ARG BRANCH=master

ENV HOME /home/opnfv
ENV working_dir ${HOME}/releng-testresults/reporting
ENV CONFIG_REPORTING_YAML ${working_dir}/reporting/reporting.yaml

WORKDIR ${HOME}
# Packaged dependencies
RUN apt-get update && apt-get install -y \
build-essential \
ssh \
curl \
gnupg \
python-pip \
python-dev \
python-setuptools \
git-core \
supervisor \
--no-install-recommends

RUN pip install --upgrade pip && easy_install -U setuptools==30.0.0

RUN git clone --depth 1 https://gerrit.opnfv.org/gerrit/releng-testresults /home/opnfv/releng-testresults
RUN pip install -r ${working_dir}/requirements.txt

RUN sh -c 'curl -sL https://deb.nodesource.com/setup_8.x | bash -' \
    && apt-get install -y nodejs \
    && npm install -g bower \
    && npm install -g grunt \
    && npm install -g grunt-cli

WORKDIR ${working_dir}
RUN python setup.py install
RUN docker/reporting.sh
RUN docker/web_server.sh

expose 8000

CMD ["/usr/bin/supervisord"]