diff options
| author | 2025-07-22 23:53:56 -0500 | |
|---|---|---|
| committer | 2025-07-22 23:53:56 -0500 | |
| commit | eed45531bf1c9343810c39a87e6813f8e4c9c6dd (patch) | |
| tree | caac62622257d7be1164ca6a97d47fa61c029626 | |
| parent | Instead 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-- | Dockerfile | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -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"]
|
