mirror of https://github.com/google/oss-fuzz.git
[infra] helper: Actually fix base image name
This commit is contained in:
parent
1cf792d9b1
commit
435e03555d
|
@ -147,7 +147,7 @@ def _build_image(image_name):
|
|||
build_args = []
|
||||
if not GLOBAL_ARGS.nopull:
|
||||
build_args += ['--pull']
|
||||
build_args += ['-t', 'gcr.io/%s/%s' % (image_name, image_project), dockerfile_dir ]
|
||||
build_args += ['-t', 'gcr.io/%s/%s' % (image_project, image_name), dockerfile_dir ]
|
||||
|
||||
command = [ 'docker', 'build' ] + build_args
|
||||
print('Running:', _get_command_string(command))
|
||||
|
|
Loading…
Reference in New Issue