aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Andrew D. France 2025-07-23 00:05:56 -0500
committerGravatar Andrew D. France 2025-07-23 00:05:56 -0500
commite9c1fc612d339fa89692f3a5562f9b88fa5b8f20 (patch)
tree5ed17937a0051cfa29cce391687ce5d74716e1aa
parentEnsure that the expected directory structure exists inside the container, jus... (diff)
Copying the ENTIRE subdirectory as expected: ln:27
-rw-r--r--Dockerfile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Dockerfile b/Dockerfile
index 1856412..ac570c7 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -24,7 +24,7 @@ WORKDIR /app
COPY . .
# 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/
+RUN mkdir -p /root/.lush && cp -r ./.lush/* /root/.lush/
CMD ["premake5", "gmake2"]