Installing Chrome on a background worker

Hey folks I’m trying to upload a service that takes a screenshot of a web page using playwright, specifically using Google Chrome (not the pre-installed chromium). I’m having trouble figuring out how to instal Chrome on a render background worker. What is the best way to approach this?

Thanks!

You can create a Dockerfile with Chrome installed (I find this example although I don’t know if it fits your use case) and create a Render background worker by this Dockerfile.

I’ll give this a try, thanks!