We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 68ef1ee commit 27a815eCopy full SHA for 27a815e
infra/build/functions/base_images.py
@@ -188,11 +188,10 @@ 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(
192
- tags,
193
- image_config.path,
194
- dockerfile_path=dockerfile_path,
195
- build_args=image_config.build_args)
+ step = build_lib.get_docker_build_step(tags,
+ image_config.path,
+ dockerfile_path=dockerfile_path,
+ 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