provision: Use --no-install-recommends when installing deps.

This commit is contained in:
Tim Abbott
2016-06-22 08:11:25 -07:00
parent 33e6b471e2
commit c74a74dc74

View File

@@ -149,7 +149,7 @@ def install_npm():
def main():
# type: () -> int
run(["sudo", "apt-get", "update"])
run(["sudo", "apt-get", "-y", "install"] + APT_DEPENDENCIES[codename])
run(["sudo", "apt-get", "-y", "install", "--no-install-recommends"] + APT_DEPENDENCIES[codename])
if subprocess.call(['dpkg', '-s', TSEARCH_PACKAGE_NAME]):
temp_deb_path = subprocess.check_output(["mktemp", "package_XXXXXX.deb", "--tmpdir"])