From 656a2e4ab90996ba2b77d81ad62379d276200709 Mon Sep 17 00:00:00 2001 From: Andrew D. France Date: Wed, 23 Jul 2025 03:18:05 -0500 Subject: Attempt to patch CI pipeline: Dockerfile will now be selfcontained, and thus, will init .gitmodules: ln:10 removed from original Jenkinsfile --- Dockerfile | 3 +++ 1 file changed, 3 insertions(+) (limited to 'Dockerfile') diff --git a/Dockerfile b/Dockerfile index 1b6ef69..2577c04 100644 --- a/Dockerfile +++ b/Dockerfile @@ -24,6 +24,9 @@ WORKDIR /app COPY . . +# Initialize git submodules inside the container +RUN git submodule update --init --recursive + # Creates the .lush config directory in the root user home directory as install.sh expects. RUN mkdir -p /root/.lush && cp -r ./.lush/* /root/.lush/ -- cgit v1.2.3-59-g8ed1b