https://pulumi.com logo
f

fancy-spoon-7206

08/23/2022, 8:31 PM
On production machines we do not want to install Go or Java, is it possible in that case to run
pulumi up
using the Pulumi binary? I have defined the infrastructure in Go, so do I need Go to be installed on the machine?
b

billowy-army-68599

08/23/2022, 8:33 PM
if you’re using the Go SDK, you can run
go build
on the Pulumi program to create a binary then set:
Copy code
runtime:
  binary: <path to binary>
🙏 1
f

fancy-spoon-7206

08/23/2022, 9:25 PM
And the
Pulumi.dev.yaml
config file will live outside in the same dir as the binary?