From e48a6c846f40d83187beb8ed5c36bc2f75baaef2 Mon Sep 17 00:00:00 2001 From: Andreas Schneider Date: Tue, 30 Apr 2019 09:59:15 +0200 Subject: [PATCH] bootstrap: Only install required packages on openSUSE This should reduce the amount of packages installed. And make building the image much faster! Signed-off-by: Andreas Schneider Reviewed-by: Stefan Metzmacher --- bootstrap/config.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/bootstrap/config.py b/bootstrap/config.py index bae02d9fb84..ac2628530f1 100644 --- a/bootstrap/config.py +++ b/bootstrap/config.py @@ -242,8 +242,9 @@ set -xueo pipefail zypper --non-interactive refresh zypper --non-interactive update zypper --non-interactive install \ - {pkgs} \ - system-user-nobody + --no-recommends \ + system-user-nobody \ + {pkgs} zypper --non-interactive clean -- 2.47.3