During a cold start, Cloud Run loads the last built image which seems to include the built time cache. You can disable caching in your Next.js app so that it always fetches the latest data. For example, you can set the cache
option to no-store
in a fetch
request. However, this might lead to higher costs since Firestore charges for every read operation.