From 3484f1c208fea19708ce599ef9fd02fd3a82adc3 Mon Sep 17 00:00:00 2001 From: Vivien Didelot Date: Tue, 5 Oct 2021 23:41:36 +0200 Subject: [PATCH] Dockerfile: install g++-multilib Some recipes, especially meta-qt5 packages, requires g++-multilib in the host as stated in a few projects issues [1] [2]. [1] https://github.com/siemens/meta-iot2000/issues/18#issuecomment-293417336 [2] https://github.com/meta-qt5/meta-qt5/issues/348#issuecomment-677154661 Install the package in the kas container. Signed-off-by: Vivien Didelot [Jan: fix arm64 build] Signed-off-by: Jan Kiszka --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 251e09b..ef21349 100644 --- a/Dockerfile +++ b/Dockerfile @@ -21,7 +21,7 @@ RUN apt-get install --no-install-recommends -y \ dosfstools mtools parted lz4 \ git-lfs/buster-backports mercurial iproute2 ssh-client curl rsync gnupg awscli sudo && \ if [ "$TARGETPLATFORM" = "linux/amd64" ]; then \ - apt-get install --no-install-recommends -y gcc-multilib syslinux; \ + apt-get install --no-install-recommends -y gcc-multilib g++-multilib syslinux; \ fi && \ apt-get clean && \ rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*