From 1d37ae78bc1f067925e99b83dfabf7188c335825 Mon Sep 17 00:00:00 2001 From: Itxaka Date: Wed, 11 Oct 2023 19:43:34 +0200 Subject: [PATCH] Fix alpine dockerfile Signed-off-by: Itxaka (cherry picked from commit 566f1b8c17d0f60f5bd93ca5bd1697c04b8912e7) --- images/Dockerfile.alpine | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/images/Dockerfile.alpine b/images/Dockerfile.alpine index 6501061c3..53875236c 100644 --- a/images/Dockerfile.alpine +++ b/images/Dockerfile.alpine @@ -89,7 +89,7 @@ RUN apk --no-cache add \ #### Common to a Model #### ############################################################### FROM common AS generic -RUN if [ ${TARGETARCH} != "arm64" ];then apk --no-cache add grub-bios; fi +RUN if [ "${TARGETARCH}" = "amd64" ];then apk --no-cache add grub-bios; fi RUN apk --no-cache add \ bonding \ bridge \