I'm new to Bitbucket Pipelines. Using some guides to configure them but what I realized is that the images are outdated from when the guides were written.
I keep trying to search where I can find the latest image but there's no documentation I can find that lists the releases for the images.
Can someone guide me on where I can find the versions I can use?
For example, "image: microsoft/dotnet:latest" image didn't support 3.1. I couldn't figure out which image did until I found online of another pipeline configuration that had " image: mcr.microsoft.com/dotnet/core/sdk:3.1". Using that worked luckily.
Same issue with node image as well. Had "image: node:10.15.0" before but I needed a new one. Couldn't figure out what are the newer version until I randomly searched and came across someone using "image: node:12".
Is there like a library or documentation that maintains the version history of the images that can be used in Bitbucket Pipeline?