aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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"]