lib/kamal/commands/builder/base.rb in kamal-1.5.1 vs lib/kamal/commands/builder/base.rb in kamal-1.6.0

- old
+ new

@@ -1,32 +1,22 @@ class Kamal::Commands::Builder::Base < Kamal::Commands::Base class BuilderError < StandardError; end delegate :argumentize, to: Kamal::Utils - delegate :args, :secrets, :dockerfile, :local_arch, :local_host, :remote_arch, :remote_host, :cache_from, :cache_to, :ssh, :git_archive?, to: :builder_config + delegate :args, :secrets, :dockerfile, :target, :local_arch, :local_host, :remote_arch, :remote_host, :cache_from, :cache_to, :ssh, to: :builder_config def clean docker :image, :rm, "--force", config.absolute_image end def pull docker :pull, config.absolute_image end - def push - if git_archive? - pipe \ - git(:archive, "--format=tar", :HEAD), - build_and_push - else - build_and_push - end - end - def build_options - [ *build_tags, *build_cache, *build_labels, *build_args, *build_secrets, *build_dockerfile, *build_ssh ] + [ *build_tags, *build_cache, *build_labels, *build_args, *build_secrets, *build_dockerfile, *build_target, *build_ssh ] end def build_context config.builder.context end @@ -69,9 +59,13 @@ if Pathname.new(File.expand_path(dockerfile)).exist? argumentize "--file", dockerfile else raise BuilderError, "Missing #{dockerfile}" end + end + + def build_target + argumentize "--target", target if target.present? end def build_ssh argumentize "--ssh", ssh if ssh.present? end