Add Docker layer caching to improve build performance#241
Merged
Conversation
Implements GitHub Actions cache backend (type=gha) for Docker layer caching in both workflows: **update-current-image.yml:** - Added cache-from: type=gha to both 'Build' and 'Build and push Image' steps - Added cache-to: type=gha,mode=max to store full cache for reuse **dockerimage.yml:** - Added cache-from: type=gha to 'Build Image' step - Added cache-to: type=gha,mode=max for caching Docker layers **Benefits:** - Reuses Docker layers across builds - Significantly faster builds when layers haven't changed - No external infrastructure needed (uses GitHub Actions cache) - Cache is scoped per workflow run context
9aed965 to
4df2cdf
Compare
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Implements GitHub Actions cache backend for Docker layer caching across both workflows.
Changes:
update-current-image.yml:
cache-from: type=ghato both 'Build' (test) and 'Build and push Image' (push) stepscache-to: type=gha,mode=maxto store full layer cache for future reusedockerimage.yml:
cache-from: type=ghato 'Build Image' stepcache-to: type=gha,mode=maxfor layer cachingHow it works:
Expected Impact:
Note:
mode=maxstores all intermediate layers, maximizing cache hit rate