diff options
author | Trevor Bramwell <tbramwell@linuxfoundation.org> | 2017-11-21 00:46:35 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@opnfv.org> | 2017-11-21 00:46:35 +0000 |
commit | 174b299271189496bae4c4d6727ea26a7a098756 (patch) | |
tree | b063e18c795988e38e1eb4afa74d4cbf9524f057 /utils/test/reporting/docker/Dockerfile | |
parent | fd65ec9e84ae025e6b903c403514405ba0bb0a61 (diff) | |
parent | f11f26d23dabde24b0bcd67ac81b094aa89eb6c9 (diff) |
Merge "Remove 'utils/test' Directory and update INFO"
Diffstat (limited to 'utils/test/reporting/docker/Dockerfile')
-rw-r--r-- | utils/test/reporting/docker/Dockerfile | 59 |
1 files changed, 0 insertions, 59 deletions
diff --git a/utils/test/reporting/docker/Dockerfile b/utils/test/reporting/docker/Dockerfile deleted file mode 100644 index 07440ad29..000000000 --- a/utils/test/reporting/docker/Dockerfile +++ /dev/null @@ -1,59 +0,0 @@ -######################################## -# 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/utils/test/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 /home/opnfv/releng -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"] |