diff options
author | baigk <baiguoku@huawei.com> | 2015-12-23 13:38:25 +0800 |
---|---|---|
committer | baigk <baiguoku@huawei.com> | 2015-12-23 13:39:39 +0800 |
commit | 89a5321aa8d7981cc5422e72ba5827b710bac9ee (patch) | |
tree | fd47d273b68f6e75d5d8f70431d8aec5dcdeb9f2 /build/os/centos/rhel7 | |
parent | 771c919d4aae01758ed54220288f12e4f64e35c7 (diff) |
support build compass-core ppa
JIRA: COMPASS-213
Change-Id: I95617273e53df5ae060dd8053fbb2eaff946de06
Signed-off-by: baigk <baiguoku@huawei.com>
Diffstat (limited to 'build/os/centos/rhel7')
-rw-r--r-- | build/os/centos/rhel7/compass/Dockerfile.tmpl | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/build/os/centos/rhel7/compass/Dockerfile.tmpl b/build/os/centos/rhel7/compass/Dockerfile.tmpl new file mode 100644 index 00000000..0d0fbe10 --- /dev/null +++ b/build/os/centos/rhel7/compass/Dockerfile.tmpl @@ -0,0 +1,25 @@ +FROM centos:7.2.1511 +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 ./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 |