From 3656b2525c9b4e8c5e1f45625adb1cd143425dc0 Mon Sep 17 00:00:00 2001 From: "Chigang(Justin)" Date: Thu, 13 Aug 2015 03:14:03 -0400 Subject: 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) --- ci/trusty/juno/Dockerfile | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 ci/trusty/juno/Dockerfile (limited to 'ci/trusty/juno/Dockerfile') 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) + +# 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 -- cgit 1.2.3-korg