You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When docker builds images each step in a Dockerfile produces an intermediate image which is kept in the build cache
Because, exaslct copies the build context to a temporary directory, we probably can't reuse these intermediate images, because Docker doesn't associate the new directory with a previous build
As such, keeping the build cache is likely not useful
Tasks
Investigate if the docker build cache can be used?
If it can't be used, check if we keep it.
If we keep it, change that.
Acceptance Criteria
Either, the build cache is used and improve the performance of rebuilds of a single images, or we remove the build cache after the build
The text was updated successfully, but these errors were encountered:
Background
Tasks
Acceptance Criteria
The text was updated successfully, but these errors were encountered: