aboutsummaryrefslogtreecommitdiffstats
path: root/build/os/centos/rhel7/juno/Dockerfile.tmpl
diff options
context:
space:
mode:
Diffstat (limited to 'build/os/centos/rhel7/juno/Dockerfile.tmpl')
-rw-r--r--build/os/centos/rhel7/juno/Dockerfile.tmpl30
1 files changed, 30 insertions, 0 deletions
diff --git a/build/os/centos/rhel7/juno/Dockerfile.tmpl b/build/os/centos/rhel7/juno/Dockerfile.tmpl
new file mode 100644
index 00000000..df5f41b4
--- /dev/null
+++ b/build/os/centos/rhel7/juno/Dockerfile.tmpl
@@ -0,0 +1,30 @@
+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
+#set packages = $getVar('spcial_packages', [])
+#for package in $packages
+ADD $packages /var/cache/yum/x86_64/7/base/packages/
+#end for
+#set scripts = $getVar('scripts', [])
+#set dir = $getVar('dir', ".")
+#for script in $scripts
+ADD $dir/$script /tmp/chigang/$script
+RUN chmod +x /tmp/chigang/$script
+RUN /tmp/chigang/$script
+#end for
+ADD ./comps.xml /
+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