From 2942272878f99b7a7894f175285ebfeeac788da9 Mon Sep 17 00:00:00 2001 From: QiLiang Date: Sat, 16 Jan 2016 01:14:18 +0000 Subject: Add Dockerfile and bootstrap scripts to run rubbos JIRA: - Change-Id: Ifc14193ee2d6f0a1f9f5b67a2043ed6640a8b928 Signed-off-by: QiLiang --- ci/docker/bottlenecks-ci/Dockerfile | 43 +++++++++++++++++++++++++++++++++++++ 1 file changed, 43 insertions(+) create mode 100644 ci/docker/bottlenecks-ci/Dockerfile (limited to 'ci/docker/bottlenecks-ci') diff --git a/ci/docker/bottlenecks-ci/Dockerfile b/ci/docker/bottlenecks-ci/Dockerfile new file mode 100644 index 00000000..7e543886 --- /dev/null +++ b/ci/docker/bottlenecks-ci/Dockerfile @@ -0,0 +1,43 @@ +############################################################################## +# Copyright (c) 2015 Huawei Technologies Co.,Ltd and others. +# +# 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 ubuntu:14.04 +MAINTAINER Qi Liang + +LABEL image=opnfv/bottlenecks + +# GIT repo directory +ENV REPOS_DIR /home/opnfv/repos + +# Bottlenecks repo +ENV BOTTLENECKS_REPO_DIR ${REPOS_DIR}/bottlenecks +ENV RELENG_REPO_DIR ${REPOS_DIR}/releng + +RUN apt-get update && apt-get install -y \ + curl \ + wget \ + git \ + sshpass \ + python \ + python-glanceclient \ + python-heatclient \ + python-keystoneclient \ + python-neutronclient \ + python-novaclient + +RUN apt-get -y autoremove && \ + apt-get clean + +RUN mkdir -p ${REPOS_DIR} + +RUN git config --global http.sslVerify false +# TODO fix code clone handler +#RUN git clone https://gerrit.opnfv.org/gerrit/bottlenecks ${BOTTLENECKS_REPO_DIR} +#RUN git clone https://gerrit.opnfv.org/gerrit/releng ${RELENG_REPO_DIR} + -- cgit