Sha256: eaa5b5156065e673c6959147244ea79f0e34d9fc70a0219ce11e6eadce797218

Contents?: true

Size: 429 Bytes

Versions: 2

Compression:

Stored size: 429 Bytes

Contents

class Kamal::Commands::Builder::Native < Kamal::Commands::Builder::Base
  def create
    # No-op on native without cache
  end

  def remove
    # No-op on native without cache
  end

  def info
    # No-op on native
  end

  private
    def build_and_push
      combine \
        docker(:build, *build_options, build_context),
        docker(:push, config.absolute_image),
        docker(:push, config.latest_image)
    end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
kamal-1.5.1 lib/kamal/commands/builder/native.rb
kamal-1.5.0 lib/kamal/commands/builder/native.rb