From 8d7724363e81602741f8a30c6d980e7b0c02a318 Mon Sep 17 00:00:00 2001 From: NymanRobin Date: Thu, 9 May 2024 22:23:28 +0300 Subject: [PATCH] Fix the image build for ipxe-builder The copy step in the dockerfile was missing the .sh extension causing docker build to fail. Signed-off-by: NymanRobin --- ipxe-builder/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ipxe-builder/Dockerfile b/ipxe-builder/Dockerfile index 13a6ea2..87afb67 100644 --- a/ipxe-builder/Dockerfile +++ b/ipxe-builder/Dockerfile @@ -2,6 +2,6 @@ FROM quay.io/centos/centos:stream9 RUN dnf install -y gcc git-core make perl xz-devel python3-setuptools python3-jinja2 -COPY buildipxe embed.ipxe.j2 /bin/ +COPY buildipxe.sh embed.ipxe.j2 /bin/ CMD /bin/buildipxe.sh