summaryrefslogtreecommitdiff
path: root/Dockerfile
diff options
context:
space:
mode:
authorptweezy <ptweezy@runforyour.money>2024-12-15 19:12:09 -0500
committerGitHub <noreply@github.com>2024-12-15 19:12:09 -0500
commit15ed6585477ab909f18e038639b6488536f67eb6 (patch)
tree0d2b4d122a4af7b2cb19f0e69c1a72b0a52949fe /Dockerfile
parent81f89b52c9c819983c69dfbaf2d96e5abf0e6264 (diff)
Docker Build Change Proposal (#2373)
* removing due to deprecation * addressing docker build console issues, updating to latest LTS ubuntu, addressing Ubuntu + Python .venv requirements, standardizing environment * Update Dockerfile * proposed docker build changes * improving parallel build * removing * keep image open after build * updating based on feedback * update * fixed typo * revert --------- Co-authored-by: BuildTools <unconfigured@null.spigotmc.org> Co-authored-by: Parker <parker@runforyour.money>
Diffstat (limited to 'Dockerfile')
-rw-r--r--Dockerfile3
1 files changed, 1 insertions, 2 deletions
diff --git a/Dockerfile b/Dockerfile
index 5d0b51cbd..131ed20f1 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -25,5 +25,4 @@ RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone &
WORKDIR /oot
RUN git config --global --add safe.directory /oot
-CMD ["/bin/sh", "-c", \
- "echo 'usage:\n docker run --rm --mount type=bind,source=\"$(pwd)\",destination=/oot oot make -j$(nproc) setup\n docker run --rm --mount type=bind,source=\"$(pwd)\",destination=/oot oot make -j$(nproc)'"]
+CMD make -j $(nproc) setup && make -j $(nproc) && tail -f /dev/null