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/trusty/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/trusty/juno/Dockerfile')
-rw-r--r-- | ci/trusty/juno/Dockerfile | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/ci/trusty/juno/Dockerfile b/ci/trusty/juno/Dockerfile new file mode 100644 index 00000000..2936d0ea --- /dev/null +++ b/ci/trusty/juno/Dockerfile @@ -0,0 +1,19 @@ +FROM ubuntu:14.04.3 +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 + +#RUN apt-get update + +RUN rm -f /etc/apt/apt.conf.d/docker-clean +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 |