Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Publishing of .NET Core Sample images causes multiple redundant image imports in ACR #293

Closed
mthalman opened this issue Aug 28, 2019 · 1 comment

Comments

@mthalman
Copy link
Member

Since the .NET Core Sample images are all built off the same Dockerfile, it causes the image info data generated during the build to have multiple tags from distinct images all associated with one image path. When this image info is passed to the CopyAcrImagesCommand, it causes it to make multiple import requests for the same tag. This is because it enumerates the images that are to be published and then looks up the tags associated with those images. For each image it enumerates, it finds all of the tags (not just the tag for that image).

This is related to #286. It's debatable whether this should even be a separate bug compared to #286 since the fix for this would just be a workaround for #286.

@MichaelSimons
Copy link
Member

Fixed with #437.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

2 participants