Hi @cakoose , thanks for reaching out, and thank you for providing such an excellent, minimal repro repository and steps.
I was able to repro using a Starter service. The server is able to serve the image at the 2GB RAM plan. The root cause is the next/image component does image optimization on the fly. My theory is that when the first request for the image is made, the Next.js app is using a lot of memory to compress the 13MB image; the image loaded into my browser is 194Kb. I’ve found an open Github issue that describes the issue.
As part of your build step, optimize your images, so that when the image is first requested, the next.js app is not using as much memory to serve the image.
Set the unoptimized prop for the component to true (docs). However, this might result in a bad experience for your visitors.
Thanks for investigating! I’ll follow that GitHub issue for updates.
I mistakenly thought the issue Render-specific because I tried --max_old_space_size=64 locally and the issue did not repro. But that doesn’t exactly limit total memory. I used Docker to more reliably limit memory and the issue reproduced locally.