From 21ae2c23787516c79afeb72c33f3f4d7018ff20d Mon Sep 17 00:00:00 2001 From: "Dr. Jens Harbott" Date: Thu, 21 Apr 2022 16:48:46 +0200 Subject: [PATCH] Add binutils to nodepool builder docker image When building Ubuntu 22.04 (Jammy), we need ``ar`` as extractor because dpkg-deb on bullseye doesn't support the required compression algorithm. Make sure that it is installed in the docker image. Signed-off-by: Dr. Jens Harbott Change-Id: Icb0e40827c9f8ac583fa143545e6bed9641bf613 --- Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile b/Dockerfile index a8f3c79ea..045a5b9a1 100644 --- a/Dockerfile +++ b/Dockerfile @@ -75,6 +75,7 @@ RUN \ && echo "deb http://ppa.launchpad.net/openstack-ci-core/debootstrap/ubuntu focal main" >> /etc/apt/sources.list \ && apt-get update \ && apt-get install -y \ + binutils \ curl \ dnf \ debian-keyring \