Skip to content

Commit

Permalink
Disable docker cache to check full images rebuild
Browse files Browse the repository at this point in the history
Signed-off-by: Alina Kladieva <alina.kladieva@intel.com>
  • Loading branch information
akladiev committed Jan 29, 2025
1 parent 8d01e23 commit 27ce1d1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/actions/handle_docker/images_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ def get_missing(self, image_names: Iterable = None, base: bool = False) -> list:
return missing_images

def build(self, image_names: Iterable = None, missing_only: bool = False, push: bool = True, builder: str = None,
import_cache: bool = True, export_cache: bool = True):
import_cache: bool = False, export_cache: bool = False):
to_build = self.get(self.get_missing(image_names)) if missing_only else self.get(image_names)
for image in to_build:
image.build(self.dry_run, push, builder, import_cache, export_cache)
Expand Down

0 comments on commit 27ce1d1

Please sign in to comment.