diff options
author | Chigang(Justin) <chigang@huawei.com> | 2015-08-13 03:14:03 -0400 |
---|---|---|
committer | Chigang(Justin) <chigang@huawei.com> | 2015-08-18 03:56:06 -0400 |
commit | 3656b2525c9b4e8c5e1f45625adb1cd143425dc0 (patch) | |
tree | 0836bcdf3d093d3d4f6cd40e4deedcbf93ebc976 /ci/centos7/juno/Dockerfile | |
parent | 7951b094df92c40417ec66c4be58871911bbed07 (diff) |
Generate ppa repositories automatically
Openstack ppa repo will be generated by the patch.now we support
openstack(juno) on trusty/centos7.1. there are two steps about
how to generate the repo:
1. analyze the deployment script to find the deploying packages
2. use Docker as container to collect packages
JIRA: COMPASS-15
Change-Id: I74ac57b70455643ecf9d32effd44a2e46f404f4e
Signed-off-by: Chigang(Justin) <chigang@huawei.com>
Diffstat (limited to 'ci/centos7/juno/Dockerfile')
-rw-r--r-- | ci/centos7/juno/Dockerfile | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/ci/centos7/juno/Dockerfile b/ci/centos7/juno/Dockerfile new file mode 100644 index 00000000..f3d41044 --- /dev/null +++ b/ci/centos7/juno/Dockerfile @@ -0,0 +1,20 @@ +FROM centos:7.1.1503 +MAINTAINER Chigang(Justin) <chigang@huawei.com> + +# TODO: Is there some easy way to get the fastest/closest mirror? +#RUN sed -i 's/archive.ubuntu.com/mirrors.163.com/g' /etc/apt/sources.list + +#set cache enable +RUN sed -i 's/keepcache=0/keepcache=1/g' /etc/yum.conf + +ADD ./centos7/juno/centos7-comps.xml / +ADD ./install_packages.sh /tmp/chigang/ +RUN chmod +x /tmp/chigang/install_packages.sh +RUN /tmp/chigang/install_packages.sh + +ADD ./cp_repo.sh /tmp/chigang/ +RUN chmod +x /tmp/chigang/cp_repo.sh +RUN mkdir /result + +CMD ["/tmp/chigang/cp_repo.sh"] +#VOLUME /tmp/chigang |