From 77eb52f8b1a3a6b5fedefbedc06f15e65e9ef30e Mon Sep 17 00:00:00 2001 From: LALLAU Bertrand Date: Tue, 17 Sep 2024 14:38:37 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9BCloudInit:=20baremetal=20node=20fai?= =?UTF-8?q?ls=20to=20deploy=20using=20a=20local=20config=20drive?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Trying to deploy using a config drive on the client side requires 'genisoimage' binary to be present. This patch install the missing package. Fixes #27 Signed-off-by: LALLAU Bertrand --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 4bcb890..d4217e4 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,7 +3,7 @@ FROM quay.io/centos/centos:stream9 # Help people find the actual baremetal command COPY scripts/openstack /usr/bin/openstack -RUN dnf install -y python3 python3-pip && \ +RUN dnf install -y python3 python3-pip genisoimage && \ pip install python-ironicclient --prefix /usr --no-cache-dir && \ chmod +x /usr/bin/openstack && \ dnf update -y && \