diff --git a/ebcli/containers/commands.py b/ebcli/containers/commands.py index 4150a6494..76a5c4e5a 100644 --- a/ebcli/containers/commands.py +++ b/ebcli/containers/commands.py @@ -54,7 +54,7 @@ def build_img(docker_path, file_path=None): :return: str: id of the new image """ - opts = ['-f', file_path] if file_path else [] + opts = ['-q', '-f', file_path] if file_path else ['-q'] args = ['docker', 'build'] + opts + [docker_path] output = _run_live(args) return _grab_built_image_id(output)