mthalman / docker-bump-action

MIT License
2 stars 0 forks source link

Support for multiple image dependencies #23

Open mthalman opened 4 months ago

mthalman commented 4 months ago

While the final image may derive its image layers from one base image, it still may include content that comes from other images.

Example:

FROM registry.io/foo
COPY --from=registry.io/bar /tool /tool

In this example, it would be good to trigger an image rebuild whenever registry.io/foo or registry.io/bar is updated.