diff options
author | Justin chi <chigang@huawei.com> | 2015-09-17 11:07:13 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@172.30.200.206> | 2015-09-17 11:07:13 +0000 |
commit | 1bdbd85b6def38c5871a7806a1412385b80ee326 (patch) | |
tree | 9107d0b6a31d5c09620c3ac8ca65baf8b9c33c86 /build/os/ubuntu/trusty/kilo | |
parent | e784578ee4f155f195506b10cf32f781b39be56c (diff) | |
parent | 4265a1ec3817d137332f6a771bbbef0eaee5879c (diff) |
Merge "Add parameter allows users to add their own package or scripts of making package to ISO file"
Diffstat (limited to 'build/os/ubuntu/trusty/kilo')
-rw-r--r-- | build/os/ubuntu/trusty/kilo/Dockerfile.tmpl | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/build/os/ubuntu/trusty/kilo/Dockerfile.tmpl b/build/os/ubuntu/trusty/kilo/Dockerfile.tmpl index 944fb154..d723b6e7 100644 --- a/build/os/ubuntu/trusty/kilo/Dockerfile.tmpl +++ b/build/os/ubuntu/trusty/kilo/Dockerfile.tmpl @@ -9,12 +9,11 @@ RUN sed -i 's/archive.ubuntu.com/mirrors.163.com/g' /etc/apt/sources.list RUN rm -f /etc/apt/apt.conf.d/docker-clean #set packages = $getVar('spcial_packages', []) #for package in $packages -ADD $packages /var/cache/apt/archives/ +ADD ./Debian/packages/$package /var/cache/apt/archives/ #end for #set scripts = $getVar('scripts', []) -#set dir = $getVar('dir', ".") #for script in $scripts -ADD $dir/$script /tmp/chigang/$script +ADD ./Debian/script/$script /tmp/chigang/$script RUN chmod +x /tmp/chigang/$script RUN /tmp/chigang/$script #end for |