Debian Docker builder
This tool helps to build Debian binary packages for multiple distribution releases.
- build multiple a package for multiple releases in parallel
- use docker containers for isolation
- install dependencies automatically
- use a apt cache for minimizing download times
- Cache images after dependency installation for faster build times
Add this Gemfile to your debian packge:
source 'https://rubygems.org'
gem 'dodebui'
And then execute:
$ bundle install
Now create your Dodebuifile in project root:
# vim: ft=ruby
# Configure distributions to build
@build_distributions = [
'debian:wheezy',
'debian:jessie',
'debian:squeeze',
'ubuntu:precise',
'ubuntu:trusty',
]
# Configure a apt-proxy (warmly recommended)
#@apt_proxy = 'http://my-apt-proxy.com/'
$ bundle exec dodebui
https://github.com/simonswine/dodebui-package-hello
- Fork it ( https://github.com/[my-github-username]/dodebui/fork )
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create a new Pull Request