why does docker.image create two tags in my ACR? one with the tag that I actually specify, another one with the commit hash. Can I turn this off?
IF this doesn't lead to double the storage usage in ACR, if the system is smart enough to know that both tags refer to the same physical image, then I don't care.
but I don't know if that is the case. Anyone?
IIRC the 2 tags it creates are:
• 1 you control (i think?)
• 1 pulumi generates to be guaranteed to be unique
also that means you can build for example a new app docker image for each build of some pipeline, but if they all share the same base layer, you won't pay for that base layer multiple times