From 3a324521ffa1471e9c75b66935a96a209b2962f3 Mon Sep 17 00:00:00 2001 From: Jerome Gravel-Niquet Date: Tue, 22 Oct 2024 11:37:40 -0400 Subject: [PATCH] use a depot builder scoped by app so they don't share cache and all that between different users/apps deployments --- deploy.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deploy.rb b/deploy.rb index 077189f1a4..9c711516dc 100755 --- a/deploy.rb +++ b/deploy.rb @@ -411,7 +411,7 @@ if DEPLOY_NOW in_step Step::DEPLOY do - exec_capture("flyctl deploy -a #{APP_NAME} --image #{image_ref} #{CONFIG_COMMAND_STRING}") + exec_capture("flyctl deploy -a #{APP_NAME} --image #{image_ref} --depot-scope=app #{CONFIG_COMMAND_STRING}") end end