Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: child image should be rebuildable
The Filter function constructs a completely new graph were unmodified images are discarded. I suppose it was done to have a (very) smaller graph to improve (a little) performance. Unfortunately, we need info on all direct parents images when rebuilding, at least to properly amend the FROM line to be able to pull the right parent image. Thus this refacto broke completely rebuild of every image with at least one not-to-rebuild parent. I fix this quickly by avoiding the Filter function altogether which is too complicated for our sake and does not really improves the performances. Fixes be5509e
- Loading branch information