Files
kamal/lib/mrsk/commands/builder/native.rb
2023-06-18 22:45:04 +04:00

21 lines
395 B
Ruby

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