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 a51a8df added builder docker
a51a8df is described below
commit a51a8dfde03ac47232f0c4366d34f3fde364b061
Author: Trevor a.k.a @rawkintrevo <[email protected]>
AuthorDate: Thu Jun 25 16:47:43 2020 -0500
added builder docker
---
docker/build/Dockerfile | 22 ++++++++++++++++++++++
1 file changed, 22 insertions(+)
diff --git a/docker/build/Dockerfile b/docker/build/Dockerfile
new file mode 100644
index 0000000..e3989c8
--- /dev/null
+++ b/docker/build/Dockerfile
@@ -0,0 +1,22 @@
+# Licensed to the Apache Software Foundation (ASF) under one or more
+# contributor license agreements. See the NOTICE file distributed with
+# this work for additional information regarding copyright ownership.
+# The ASF licenses this file to You under the Apache License, Version 2.0
+# (the "License"); you may not use this file except in compliance with
+# the License. You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+FROM ubuntu:16.04
+
+RUN apt update
+RUN apt install maven git default-jre default-jdk -y
+RUN git clone https://github.com/apache/mahout.git /mahout
+
+# RUN cd mahout & git checkout build-cleanup
+# ^^ this doesn't work bc I'm bad at docker and linux and computers (tg)
\ No newline at end of file