Method: Bricky::Bricks::Debian#bootstrap

Defined in:
lib/bricky/bricks/debian.rb

#bootstrap(bootstrap_path) ⇒ Object



23
24
25
26
27
28
# File 'lib/bricky/bricks/debian.rb', line 23

def bootstrap(bootstrap_path)
  ["RUN apt-get update",
   "RUN apt-get install -y --force-yes libfile-fcntllock-perl"].tap do |deps|
    deps << package_build_dependencies(bootstrap_path) if config.fetch('dependencies', false)
  end
end