What is the difference between the docker images below?
- mcr.microsoft.com/dotnet/aspnet:3.1
- mcr.microsoft.com/dotnet/aspnet:3.1-buster
- mcr.microsoft.com/dotnet/aspnet:3.1-buster-slim
I see all these tags listed with the same docker file: 3.1.11-buster-slim, 3.1-buster-slim, 3.1.11, 3.1
Reference: https://hub.docker.com/_/microsoft-dotnet-aspnet/
I've read some details for the java images, so i guess the format is
[aspnet version]-[host os codename]-[features included]
but then it's not clear to me why event the [features included] tag points to the same docker file description or if the naming concept is the same as the JDK one.