You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
244 B

desc "Run RZZ in development mode"
task :dev do
sh "rerun -- rackup"
end
namespace :docker do
TAG = "kejadlen/rzz"
task :build do
sh "docker build --tag #{TAG} ."
end
task push: :build do
sh "docker push #{TAG}"
end
end