diff --git a/lib/livebook/runtime/fly.ex b/lib/livebook/runtime/fly.ex index 510904fef..5eb22f705 100644 --- a/lib/livebook/runtime/fly.ex +++ b/lib/livebook/runtime/fly.ex @@ -267,10 +267,12 @@ defmodule Livebook.Runtime.Fly do "--watch-stdin" ] + env = [{~c"FLY_NO_UPDATE_CHECK", ~c"1"}] + port = Port.open( {:spawn_executable, flyctl_path}, - [:binary, :hide, :stderr_to_stdout, args: args] + [:binary, :hide, :stderr_to_stdout, args: args, env: env] ) port_ref = Port.monitor(port)