On production machines we do not want to install G...
# general
f
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
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
And the
Pulumi.dev.yaml
config file will live outside in the same dir as the binary?