From eed45531bf1c9343810c39a87e6813f8e4c9c6dd Mon Sep 17 00:00:00 2001 From: Andrew D. France Date: Tue, 22 Jul 2025 23:53:56 -0500 Subject: Ensure that the expected directory structure exists inside the container, just as install.sh expects: ln:27 --- Dockerfile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 3ec9fe0..1856412 100644 --- a/Dockerfile +++ b/Dockerfile @@ -23,6 +23,8 @@ WORKDIR /app COPY . . -# Generate the makefiles. This will be the default action if no other command is given. +# Creates the .lush config directory in the root user home directory as install.sh expects. +RUN mkdir -p /root/.lush && cp -r ./.lush/scripts /root/.lush/ + CMD ["premake5", "gmake2"] -- cgit v1.2.3-59-g8ed1b