diff options
author | baigk <baiguoku@huawei.com> | 2015-11-09 00:37:19 -0800 |
---|---|---|
committer | baigk <baiguoku@huawei.com> | 2015-11-16 07:03:05 +0000 |
commit | cb5ae68b968f28c1cedee3720ff14cf5fa1ab92c (patch) | |
tree | 74c81a96b8a76de1b5e67e4a2f7097f643ad6709 /build/os/centos/rhel7 | |
parent | e28554faea569b5e6d15b3816df702e664b5bba4 (diff) |
suport installing openstack kilo on centos 7
JIRA: COMPASS-141
Change-Id: I8b4eeacd802124cd05d17c7c24682254f0c567f7
Signed-off-by: baigk <baiguoku@huawei.com>
Diffstat (limited to 'build/os/centos/rhel7')
-rw-r--r-- | build/os/centos/rhel7/kilo/Dockerfile.tmpl | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/build/os/centos/rhel7/kilo/Dockerfile.tmpl b/build/os/centos/rhel7/kilo/Dockerfile.tmpl new file mode 100644 index 00000000..34945d00 --- /dev/null +++ b/build/os/centos/rhel7/kilo/Dockerfile.tmpl @@ -0,0 +1,27 @@ +FROM centos:7.1.1503 +MAINTAINER Chigang(Justin) <chigang@huawei.com> + +# set cache enable +RUN sed -i 's/keepcache=0/keepcache=1/g' /etc/yum.conf +#set packages = $getVar('spcial_packages', []) +#for package in $packages +ADD ./RedHat/packages/$package /var/cache/yum/x86_64/7/base/packages/ +#end for +#set scripts = $getVar('scripts', []) +#for script in $scripts +ADD ./RedHat/script/$script /tmp/chigang/$script +RUN chmod +x /tmp/chigang/$script +RUN /tmp/chigang/$script +#end for +ADD ./comps.xml / +ADD ./ceph_key_release.asc / +ADD ./install_packages.sh /tmp/chigang/install_packages.sh +RUN chmod +x /tmp/chigang/install_packages.sh +RUN /tmp/chigang/install_packages.sh + +ADD ./cp_repo.sh /tmp/chigang/cp_repo.sh +RUN chmod +x /tmp/chigang/cp_repo.sh +RUN mkdir /result + +CMD ["/tmp/chigang/cp_repo.sh"] +#VOLUME /tmp/chigang |