bdwyer2 commented on a change in pull request #803: [SYSTEMML-2339] Docker 
support
URL: https://github.com/apache/systemml/pull/803#discussion_r266138172
 
 

 ##########
 File path: Dockerfile
 ##########
 @@ -0,0 +1,22 @@
+#1. Base image, contains OS with CUDA 8.0, cuDNN 5.1.10 prebuilt
+FROM nvidia/cuda:8.0-cudnn5-runtime-ubuntu16.04
+
+RUN apt-get update && apt-get install -y --no-install-recommends \
+    ca-certificates \
+    build-essential \
+    git \
+    python3 \
+    python3-pip \
+    python3-setuptools
+
+# 2. Install spark backend
+RUN pip3 install pyspark
+
+# 3. Install systemml
+RUN pip3 install systemml
+
+# 4. Install utilities
+RUN pip3 install jupyter matplotlib numpy
 
 Review comment:
   You could combine all the `pip3 install` commands to reduce the size of the 
image.

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
[email protected]


With regards,
Apache Git Services

Reply via email to