I have a rust app. And while render can build it (using cargo) just fine, It feels a bit wasteful and unnecessary slow.
I already have a build: the CI (github actions) already builds, runs and tests it. Once that is finished I want to deploy on render (I just call the deploy hook). And at that moment, render pulls and builds the project all over again.
Can I not just push the binary onto render somehow? Is Docker the route for this? Or is there another trick that I’m missing?
On our Native Environments the binary would need to be part of the codebase or built at during deploy, there wouldn’t be a way to push that binary to Render separately.