From 7b55d543658fa422c7e82280f79e18c82e671eac Mon Sep 17 00:00:00 2001 From: Clark Boylan Date: Tue, 8 Sep 2020 16:50:00 -0700 Subject: [PATCH] Install gdisk/dosfstools on nodepool-builder images gdisk includes sgdisk which is used to create GPT partitions on disks. EFI partitions are vfat so need dosfstools. This is used by DIB when creating images with a EFI setup as with arm64 image builds. Change-Id: I57891d6890a3db6acb42c149c3a05ab25f423385 --- Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Dockerfile b/Dockerfile index 8b601dac5..42bf1ba1c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -77,6 +77,8 @@ RUN \ && apt-get install -y \ curl \ debian-keyring \ + dosfstools \ + gdisk \ git \ kpartx \ qemu-utils \