Hello,
I am using render to deploy a rails application. So far, I was using render env: ruby
, but I now need to use a native library, so I use env: docker
.
I use circleci to build and test my application before calling a deploy hook to render.
Render builds the docker image again, and deploys.
It would like render to deploy the docker image that has been tested in my CI pipeline. So I don’t want to re-build an image, just download it. Is it possible ?
My idea was to call the render deploy hook with a custom parameter, being the image digest. But it does not look possible to do pass parameters to the deploy hook. Am I missing something ?
Thanks !