build: add docker and make build tooling

This commit is contained in:
dmg
2026-01-22 22:16:28 -05:00
parent 7d3455c5cf
commit a501c35b3f
3 changed files with 35 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
FROM gradle:8.6-jdk21
WORKDIR /workspace
COPY build.gradle.kts settings.gradle.kts /workspace/
RUN gradle --no-daemon build -x test || true
COPY src /workspace/src
RUN gradle --no-daemon build