From 7d903cf5cb3ca513ff765d9c35eb49b67b4ce1d4 Mon Sep 17 00:00:00 2001 From: Simon K Date: Fri, 7 Oct 2022 01:47:31 +0200 Subject: [PATCH] container(imagefactory): Fix ARG syntax Continerfile.imagefactory was missing an equal sign ('=') for an ARG default value. This prevented the container image build from completing a git clone successfully. --- iso/empanadas/Containerfile.imagefactory | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/iso/empanadas/Containerfile.imagefactory b/iso/empanadas/Containerfile.imagefactory index d6b4aca..98b14b7 100644 --- a/iso/empanadas/Containerfile.imagefactory +++ b/iso/empanadas/Containerfile.imagefactory @@ -57,7 +57,7 @@ RUN rm -rf /etc/yum.repos.d/*.repo /get_arch RUN pip install awscli -ARG BRANCH r9 +ARG BRANCH=r9 RUN git clone https://git.resf.org/sig_core/kickstarts.git --branch $BRANCH /kickstarts RUN pip install 'git+https://git.resf.org/sig_core/toolkit.git@devel#egg=empanadas&subdirectory=iso/empanadas'