aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Andrew D. France 2025-07-22 23:53:56 -0500
committerGravatar Andrew D. France 2025-07-22 23:53:56 -0500
commiteed45531bf1c9343810c39a87e6813f8e4c9c6dd (patch)
treecaac62622257d7be1164ca6a97d47fa61c029626
parentInstead of copying the compiled files out and then mounting a volume in to ru... (diff)
Ensure that the expected directory structure exists inside the container, just as install.sh expects: ln:27
-rw-r--r--Dockerfile4
1 files changed, 3 insertions, 1 deletions
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"]