diff --git a/kolga/libs/docker.py b/kolga/libs/docker.py index 78cf26d..7a9e70b 100644 --- a/kolga/libs/docker.py +++ b/kolga/libs/docker.py @@ -271,7 +271,9 @@ def build_stage( if not disable_cache: cache_to = self.create_cache_tag(postfix=stage) logger.info(title=f"\t ℹ️ Cache to: {cache_to}") - build_command.append(f"--cache-to=type=registry,ref={cache_to},mode=max,oci-mediatypes=true,image-manifest=true") + build_command.append( + f"--cache-to=type=registry,ref={cache_to},mode=max,oci-mediatypes=true,image-manifest=true" + ) for cache_tag in self.get_cache_tags(): logger.info(title=f"\t ℹ️ Cache from: {cache_tag}")