class Mrsk::Commands::Builder::Native < Mrsk::Commands::Builder::Base def create # No-op on native without cache end def remove # No-op on native without cache end def push combine \ docker(:build, *build_options, build_context), docker(:push, config.absolute_image), docker(:push, config.latest_image) end def info # No-op on native end end