Follow-up of #312 (comment)
Since Dockerhub stopped triggering repos that are using official images as base image.
Autobuilds are also disabled due to dockerhub not taking the image layer tree into account for building causing e.g. desktop-full image being built before desktop.
As a result images in osrf/ros are never triggered other than manually.
Feature request:
- Detect if any currently active image is outdated
- Trigger rebuild of impacted images
Implementation considerations:
Logic:
- Get the list of currently active images
- detect if their base image is in "osrf" or "library" org
- if base image in library: get the digest of base image
- verify that the digest of base image is in the layer list of current image
- if not: image outdated, trigger rebuild
Implementation details:
Follow-up of #312 (comment)
Since Dockerhub stopped triggering repos that are using official images as base image.
Autobuilds are also disabled due to dockerhub not taking the image layer tree into account for building causing e.g.
desktop-fullimage being built beforedesktop.As a result images in
osrf/rosare never triggered other than manually.Feature request:
Implementation considerations:
Logic:
Implementation details: