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.
This commit is contained in:
Simon K 2022-10-07 01:47:31 +02:00 committed by devtool importer
parent a9dd322765
commit 7d903cf5cb
Signed by: neil
GPG Key ID: 705BC21EC3C70F34
1 changed files with 1 additions and 1 deletions

View File

@ -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'