This is an automated email from the ASF dual-hosted git repository.
rawkintrevo pushed a commit to branch build-cleanup
in repository https://gitbox.apache.org/repos/asf/mahout.git
The following commit(s) were added to refs/heads/build-cleanup by this push:
new 8d2d346 added builder readme
8d2d346 is described below
commit 8d2d346ecf462b5c0f9e30030033ba0dafb1eb6b
Author: Trevor a.k.a @rawkintrevo <[email protected]>
AuthorDate: Thu Jun 25 16:48:49 2020 -0500
added builder readme
---
docker/build/README.md | 22 ++++++++++++++++++++++
1 file changed, 22 insertions(+)
diff --git a/docker/build/README.md b/docker/build/README.md
new file mode 100644
index 0000000..a32715e
--- /dev/null
+++ b/docker/build/README.md
@@ -0,0 +1,22 @@
+The Spirit of this Container is so we can all build on the "same machine" e.g.
no "well it worked on my machine"
+
+Build it with
+
+docker build -t mahout-builder-base .
+OR pull a convienience
+
+docker pull rawkintrevo/mahout-builder-base
+Get into it with
+
+docker run -it mahout-builder-base bash
+# or if you pulled convienience...
+docker run -it rawkintrevo/mahout-builder-base bash
+Save your commands in the Dockerfile
+
+Then maybe do something like
+
+cd mahout
+git checkout build-cleanup
+git pull # if you pulled convienience, its likely out of date.
+mvn clean package -DskipTests
+The end goal is to be able to build / post RCs from this.
\ No newline at end of file