-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Changes to the Container class: 1. Change Container class to normal class The class originally implemented using dataclass didn't have many of the advantages of dataclass, but rather made creating instances more difficult to understand. The reason is a container can have multi-arch images, most attributions doesn't have one-to-one mapping with a single image data. 2. Use class method `create_from_images` to create Container instances It was implemented with instantiating it first then load per-arch data with `load` which is confusing. 3. Remove `resolve_published` Just check if a container is published by checking that in all deliver repositories. JIRA: CWFHEALTH-2313
- Loading branch information
Showing
2 changed files
with
108 additions
and
146 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.