From 9ed73fdd2f2fd77591d0020e13c37602a0600eb8 Mon Sep 17 00:00:00 2001 From: Tianon Gravi Date: Mon, 13 Jun 2022 16:22:43 -0700 Subject: [PATCH] Update "oracle" variants to be the default variants The Oracle Linux-based images: - are smaller (by a pretty non-trivial amount - nearly 100MiB) - support more architectures (arm64!) - are more supported/recommended by MySQL upstream I do not believe it is common for users to install additional packages in images that are `FROM mysql`, but if it is, the Debian-based images are not going away with this change (those users will just have to adapt - either by switching their package installations to Oracle-based packages or by using the Debian-based variants explicitly). --- generate-stackbrew-library.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/generate-stackbrew-library.sh b/generate-stackbrew-library.sh index 773ba0fc2..cbf4cecc1 100755 --- a/generate-stackbrew-library.sh +++ b/generate-stackbrew-library.sh @@ -8,8 +8,8 @@ declare -A aliases=( defaultDefaultVariant='oracle' declare -A defaultVariants=( - [5.7]='debian' - [8.0]='debian' + #[5.7]='debian' + #[8.0]='debian' ) self="$(basename "$BASH_SOURCE")"