We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5ba63ea commit 68ef1eeCopy full SHA for 68ef1ee
infra/build/functions/base_images.py
@@ -188,10 +188,11 @@ def get_base_image_steps(images: Sequence[ImageConfig]) -> list[dict]:
188
tags.append(f'{IMAGE_NAME_PREFIX}{image_config.name}:latest')
189
190
dockerfile_path = os.path.join('oss-fuzz', image_config.dockerfile_path)
191
- step = build_lib.get_docker_build_step(tags,
192
- image_config.path,
193
- dockerfile_path=dockerfile_path,
194
- build_args=image_config.build_args)
+ step = build_lib.get_docker_build_step(
+ tags,
+ image_config.path,
+ dockerfile_path=dockerfile_path,
195
+ build_args=image_config.build_args)
196
197
# Check for dependencies and add 'waitFor' if necessary.
198
dependencies = IMAGE_DEPENDENCIES.get(image_config.name, [])
0 commit comments