Reverted not including build args in cache key

This commit is contained in:
Deniz Zoeteman 2019-08-16 15:09:52 +02:00
parent a111681895
commit c425f02866
1 changed files with 1 additions and 0 deletions

View File

@ -191,6 +191,7 @@ func (s *stageBuilder) optimize(compositeKey CompositeCache, cfg v1.Config) erro
func (s *stageBuilder) build() error {
// Set the initial cache key to be the base image digest, the build args and the SrcContext.
compositeKey := NewCompositeCache(s.baseImageDigest)
compositeKey.AddKey(s.opts.BuildArgs...)
// Apply optimizations to the instructions.
if err := s.optimize(*compositeKey, s.cf.Config); err != nil {