From e961ebe10917d6970ff23cfb09e0fcc2156b9412 Mon Sep 17 00:00:00 2001 From: Aryan Blaauw Date: Thu, 24 Aug 2017 20:05:58 +0200 Subject: [PATCH 01/34] Create Dockerfile --- Dockerfile | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 Dockerfile diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..3a7dc0f --- /dev/null +++ b/Dockerfile @@ -0,0 +1,11 @@ +FROM twobombs/deploy-nvidia-docker + +RUN git clone --recursive http://git.tiker.net/trees/pycuda.git + +RUN add-apt-repository universe +RUN apt-get update +RUN apt-get install libboost-all-dev python-pycuda python-pip + +RUN pip install numpy scipy + +EXPOSE 5900 6080 From 5ff25fe7458a8d1ee8a3ff3534b8309642ef1f03 Mon Sep 17 00:00:00 2001 From: Aryan Blaauw Date: Thu, 24 Aug 2017 20:06:53 +0200 Subject: [PATCH 02/34] Update README.md --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index 35b9d4c..37ace4f 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,5 @@ +Forked for usage in NVidia-docker Dockerfile + # Cuburn This project is a fractal flame renderer, similar to [flam3](http://flam3.com), From e8142d21d5ad03ab07229d9d767f85b804cd7ba4 Mon Sep 17 00:00:00 2001 From: Aryan Blaauw Date: Thu, 24 Aug 2017 20:07:18 +0200 Subject: [PATCH 03/34] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 37ace4f..4fb5d07 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -Forked for usage in NVidia-docker Dockerfile +Forked for usage in NVidia-docker - Dockerfile # Cuburn From cecd905ca19ae6e55fd899289e606e5f8ce784f7 Mon Sep 17 00:00:00 2001 From: Aryan Blaauw Date: Thu, 24 Aug 2017 20:08:19 +0200 Subject: [PATCH 04/34] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 4fb5d07..04f9189 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -Forked for usage in NVidia-docker - Dockerfile +Forked for usage in NVidia-docker - added Dockerfile # Cuburn From 8e18d4dd995178f4f762fa0f95b83553cce24ab6 Mon Sep 17 00:00:00 2001 From: Aryan Blaauw Date: Thu, 24 Aug 2017 20:09:46 +0200 Subject: [PATCH 05/34] Update Dockerfile --- Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile b/Dockerfile index 3a7dc0f..76090c7 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,7 @@ FROM twobombs/deploy-nvidia-docker RUN git clone --recursive http://git.tiker.net/trees/pycuda.git +RUN got clone --recursive https://github.com/twobombs/cuburn.git RUN add-apt-repository universe RUN apt-get update From e5e1cf426fb80855df486049c6699e7c1a734bf5 Mon Sep 17 00:00:00 2001 From: Aryan Blaauw Date: Fri, 25 Aug 2017 09:50:38 +0200 Subject: [PATCH 06/34] Update Dockerfile --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 76090c7..f8ebdef 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,7 @@ FROM twobombs/deploy-nvidia-docker RUN git clone --recursive http://git.tiker.net/trees/pycuda.git -RUN got clone --recursive https://github.com/twobombs/cuburn.git +RUN git clone --recursive https://github.com/twobombs/cuburn.git RUN add-apt-repository universe RUN apt-get update From e230dee5b0f8d42f6b1029c9a9aae48ba7d8f6f2 Mon Sep 17 00:00:00 2001 From: Aryan Blaauw Date: Fri, 25 Aug 2017 10:22:42 +0200 Subject: [PATCH 07/34] Update Dockerfile --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index f8ebdef..578bc2e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -5,7 +5,7 @@ RUN git clone --recursive https://github.com/twobombs/cuburn.git RUN add-apt-repository universe RUN apt-get update -RUN apt-get install libboost-all-dev python-pycuda python-pip +RUN apt-get install -y libboost-all-dev python-pycuda python-pip RUN pip install numpy scipy From 8a6b41f9be2ab4b1ec0e4b13942f4f243fcf5355 Mon Sep 17 00:00:00 2001 From: Aryan Blaauw Date: Sun, 27 Aug 2017 22:00:29 +0200 Subject: [PATCH 08/34] Update Dockerfile --- Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Dockerfile b/Dockerfile index 578bc2e..1afb2f7 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,6 +3,8 @@ FROM twobombs/deploy-nvidia-docker RUN git clone --recursive http://git.tiker.net/trees/pycuda.git RUN git clone --recursive https://github.com/twobombs/cuburn.git +RUN cd /pycuda&&./configure&&make&&make install + RUN add-apt-repository universe RUN apt-get update RUN apt-get install -y libboost-all-dev python-pycuda python-pip From 1797f1ce3f16ba180a722dea3dd5362b417343f9 Mon Sep 17 00:00:00 2001 From: Aryan Blaauw Date: Mon, 28 Aug 2017 10:21:12 +0200 Subject: [PATCH 09/34] Update Dockerfile --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 1afb2f7..454c288 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,7 +3,7 @@ FROM twobombs/deploy-nvidia-docker RUN git clone --recursive http://git.tiker.net/trees/pycuda.git RUN git clone --recursive https://github.com/twobombs/cuburn.git -RUN cd /pycuda&&./configure&&make&&make install +RUN cd /pycuda&&configure&&make&&make install RUN add-apt-repository universe RUN apt-get update From c39a2b5c23a14faae43e7e3aa4ce77c598a69a07 Mon Sep 17 00:00:00 2001 From: Aryan Blaauw Date: Mon, 28 Aug 2017 10:26:33 +0200 Subject: [PATCH 10/34] Create Dockerfile.light --- Dockerfile.light | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 Dockerfile.light diff --git a/Dockerfile.light b/Dockerfile.light new file mode 100644 index 0000000..b7f4d74 --- /dev/null +++ b/Dockerfile.light @@ -0,0 +1,23 @@ +FROM nvidia/cuda:8.0-runtime-ubuntu16.04 + +LABEL com.nvidia.volumes.needed="nvidia_driver" + +ENV PATH /usr/local/nvidia/bin:${PATH} +ENV LD_LIBRARY_PATH /usr/local/nvidia/lib:/usr/local/nvidia/lib64:${LD_LIBRARY_PATH} + +RUN apt-get update && export DEBIAN_FRONTEND=noninteractive && apt-get upgrade -y && apt-get install -y git net-tools nvidia-375 cuda && apt-get clean all + +RUN cd /root &&git clone git://github.com/novnc/noVNC && cp /root/noVNC/vnc.html /root/noVNC/index.html && mkdir /root/.vnc + +RUN git clone --recursive http://git.tiker.net/trees/pycuda.git +RUN git clone --recursive https://github.com/twobombs/cuburn.git + +RUN cd /pycuda&&configure&&make&&make install + +RUN add-apt-repository universe +RUN apt-get update +RUN apt-get install -y libboost-all-dev python-pycuda python-pip && apt-get clean all + +RUN pip install numpy scipy + +EXPOSE 5900 6080 From 72cf04fc2a40650ecad655ea47058b144eeb84d6 Mon Sep 17 00:00:00 2001 From: Aryan Blaauw Date: Mon, 28 Aug 2017 10:26:59 +0200 Subject: [PATCH 11/34] Rename Dockerfile to Dockerfile.heavy --- Dockerfile => Dockerfile.heavy | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename Dockerfile => Dockerfile.heavy (100%) diff --git a/Dockerfile b/Dockerfile.heavy similarity index 100% rename from Dockerfile rename to Dockerfile.heavy From b624572641ace4d3da24044acb8e5b921aebb1ed Mon Sep 17 00:00:00 2001 From: Aryan Blaauw Date: Mon, 28 Aug 2017 10:27:22 +0200 Subject: [PATCH 12/34] Rename Dockerfile.light to Dockerfile --- Dockerfile.light => Dockerfile | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename Dockerfile.light => Dockerfile (100%) diff --git a/Dockerfile.light b/Dockerfile similarity index 100% rename from Dockerfile.light rename to Dockerfile From 9131a7793e19d71aada2ef80892273e17257d7d5 Mon Sep 17 00:00:00 2001 From: Aryan Blaauw Date: Mon, 28 Aug 2017 10:29:07 +0200 Subject: [PATCH 13/34] Update Dockerfile --- Dockerfile | 2 -- 1 file changed, 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index b7f4d74..c7da09f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -7,8 +7,6 @@ ENV LD_LIBRARY_PATH /usr/local/nvidia/lib:/usr/local/nvidia/lib64:${LD_LIBRARY_P RUN apt-get update && export DEBIAN_FRONTEND=noninteractive && apt-get upgrade -y && apt-get install -y git net-tools nvidia-375 cuda && apt-get clean all -RUN cd /root &&git clone git://github.com/novnc/noVNC && cp /root/noVNC/vnc.html /root/noVNC/index.html && mkdir /root/.vnc - RUN git clone --recursive http://git.tiker.net/trees/pycuda.git RUN git clone --recursive https://github.com/twobombs/cuburn.git From 5c076e7720b2dc782048d070918b0b072fda2d0f Mon Sep 17 00:00:00 2001 From: Aryan Blaauw Date: Mon, 28 Aug 2017 10:35:55 +0200 Subject: [PATCH 14/34] Update Dockerfile --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index c7da09f..b6e3a95 100644 --- a/Dockerfile +++ b/Dockerfile @@ -5,7 +5,7 @@ LABEL com.nvidia.volumes.needed="nvidia_driver" ENV PATH /usr/local/nvidia/bin:${PATH} ENV LD_LIBRARY_PATH /usr/local/nvidia/lib:/usr/local/nvidia/lib64:${LD_LIBRARY_PATH} -RUN apt-get update && export DEBIAN_FRONTEND=noninteractive && apt-get upgrade -y && apt-get install -y git net-tools nvidia-375 cuda && apt-get clean all +RUN apt-get update && export DEBIAN_FRONTEND=noninteractive && apt-get upgrade -y && apt-get install -y git net-tools nvidia-375 && apt-get clean all RUN git clone --recursive http://git.tiker.net/trees/pycuda.git RUN git clone --recursive https://github.com/twobombs/cuburn.git From 37082bb8d585ac06e9ee051e19bad10c92a1bcd4 Mon Sep 17 00:00:00 2001 From: Aryan Blaauw Date: Mon, 28 Aug 2017 11:21:13 +0200 Subject: [PATCH 15/34] Update Dockerfile --- Dockerfile | 2 -- 1 file changed, 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index b6e3a95..3e84eaf 100644 --- a/Dockerfile +++ b/Dockerfile @@ -5,8 +5,6 @@ LABEL com.nvidia.volumes.needed="nvidia_driver" ENV PATH /usr/local/nvidia/bin:${PATH} ENV LD_LIBRARY_PATH /usr/local/nvidia/lib:/usr/local/nvidia/lib64:${LD_LIBRARY_PATH} -RUN apt-get update && export DEBIAN_FRONTEND=noninteractive && apt-get upgrade -y && apt-get install -y git net-tools nvidia-375 && apt-get clean all - RUN git clone --recursive http://git.tiker.net/trees/pycuda.git RUN git clone --recursive https://github.com/twobombs/cuburn.git From c859b3ee284677385b5bf616a787b2bced92d5e6 Mon Sep 17 00:00:00 2001 From: Aryan Blaauw Date: Mon, 4 Sep 2017 20:31:34 +0200 Subject: [PATCH 16/34] Update Dockerfile --- Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Dockerfile b/Dockerfile index 3e84eaf..5fe4b3d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -5,6 +5,8 @@ LABEL com.nvidia.volumes.needed="nvidia_driver" ENV PATH /usr/local/nvidia/bin:${PATH} ENV LD_LIBRARY_PATH /usr/local/nvidia/lib:/usr/local/nvidia/lib64:${LD_LIBRARY_PATH} +RUN apt-get update&&apt-get install -y git + RUN git clone --recursive http://git.tiker.net/trees/pycuda.git RUN git clone --recursive https://github.com/twobombs/cuburn.git From 61f106083f856fe9bce10e9f607f34b40b05fbb3 Mon Sep 17 00:00:00 2001 From: Aryan Blaauw Date: Mon, 4 Sep 2017 20:32:13 +0200 Subject: [PATCH 17/34] Update Dockerfile --- Dockerfile | 1 - 1 file changed, 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 5fe4b3d..b96cc84 100644 --- a/Dockerfile +++ b/Dockerfile @@ -18,4 +18,3 @@ RUN apt-get install -y libboost-all-dev python-pycuda python-pip && apt-get clea RUN pip install numpy scipy -EXPOSE 5900 6080 From 9b2a21342d902af034f828e977e204b2607696da Mon Sep 17 00:00:00 2001 From: Aryan Blaauw Date: Tue, 5 Dec 2017 09:44:58 +0100 Subject: [PATCH 18/34] Update Dockerfile --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index b96cc84..77f724d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -10,7 +10,7 @@ RUN apt-get update&&apt-get install -y git RUN git clone --recursive http://git.tiker.net/trees/pycuda.git RUN git clone --recursive https://github.com/twobombs/cuburn.git -RUN cd /pycuda&&configure&&make&&make install +# RUN cd /pycuda&&configure&&make&&make install RUN add-apt-repository universe RUN apt-get update From 6b00a46ca6585a3da4b7e8abc271cf743ea2b72e Mon Sep 17 00:00:00 2001 From: Aryan Blaauw Date: Tue, 5 Dec 2017 10:05:49 +0100 Subject: [PATCH 19/34] Update Dockerfile --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 77f724d..e20a18b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -5,7 +5,7 @@ LABEL com.nvidia.volumes.needed="nvidia_driver" ENV PATH /usr/local/nvidia/bin:${PATH} ENV LD_LIBRARY_PATH /usr/local/nvidia/lib:/usr/local/nvidia/lib64:${LD_LIBRARY_PATH} -RUN apt-get update&&apt-get install -y git +RUN apt-get update&&apt-get install -y git software-properties-common python-software-properties RUN git clone --recursive http://git.tiker.net/trees/pycuda.git RUN git clone --recursive https://github.com/twobombs/cuburn.git From 418e747dfbdca5d796cb1f03835908970ea5b025 Mon Sep 17 00:00:00 2001 From: Aryan Blaauw Date: Tue, 5 Dec 2017 11:03:41 +0100 Subject: [PATCH 20/34] Update Dockerfile --- Dockerfile | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/Dockerfile b/Dockerfile index e20a18b..c2f4f55 100644 --- a/Dockerfile +++ b/Dockerfile @@ -12,9 +12,6 @@ RUN git clone --recursive https://github.com/twobombs/cuburn.git # RUN cd /pycuda&&configure&&make&&make install -RUN add-apt-repository universe -RUN apt-get update -RUN apt-get install -y libboost-all-dev python-pycuda python-pip && apt-get clean all +RUN add-apt-repository universe && apt-get update && export DEBIAN_FRONTEND=noninteractive && apt-get install -y libboost-all-dev python-pycuda python-pip && apt-get clean all RUN pip install numpy scipy - From d4f542d800dbef04a9d3c4353bc6c9235c820b43 Mon Sep 17 00:00:00 2001 From: Aryan Blaauw Date: Tue, 5 Dec 2017 12:17:33 +0100 Subject: [PATCH 21/34] Update Dockerfile --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index c2f4f55..2bc1c38 100644 --- a/Dockerfile +++ b/Dockerfile @@ -10,7 +10,7 @@ RUN apt-get update&&apt-get install -y git software-properties-common python-sof RUN git clone --recursive http://git.tiker.net/trees/pycuda.git RUN git clone --recursive https://github.com/twobombs/cuburn.git -# RUN cd /pycuda&&configure&&make&&make install +RUN cd /pycuda&&configure.py&&make&&make install RUN add-apt-repository universe && apt-get update && export DEBIAN_FRONTEND=noninteractive && apt-get install -y libboost-all-dev python-pycuda python-pip && apt-get clean all From ba3593b96ae45fcac4d4783694df4297b44a5682 Mon Sep 17 00:00:00 2001 From: Aryan Blaauw Date: Tue, 5 Dec 2017 12:34:26 +0100 Subject: [PATCH 22/34] Update Dockerfile --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 2bc1c38..23c3268 100644 --- a/Dockerfile +++ b/Dockerfile @@ -10,7 +10,7 @@ RUN apt-get update&&apt-get install -y git software-properties-common python-sof RUN git clone --recursive http://git.tiker.net/trees/pycuda.git RUN git clone --recursive https://github.com/twobombs/cuburn.git -RUN cd /pycuda&&configure.py&&make&&make install +RUN cd /pycuda&&./configure.py&&make&&make install RUN add-apt-repository universe && apt-get update && export DEBIAN_FRONTEND=noninteractive && apt-get install -y libboost-all-dev python-pycuda python-pip && apt-get clean all From 4037218e3b42f62ca1c8a2f3a50650550f5444e2 Mon Sep 17 00:00:00 2001 From: Aryan Blaauw Date: Tue, 5 Dec 2017 13:08:04 +0100 Subject: [PATCH 23/34] Update Dockerfile --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 23c3268..1178819 100644 --- a/Dockerfile +++ b/Dockerfile @@ -5,7 +5,7 @@ LABEL com.nvidia.volumes.needed="nvidia_driver" ENV PATH /usr/local/nvidia/bin:${PATH} ENV LD_LIBRARY_PATH /usr/local/nvidia/lib:/usr/local/nvidia/lib64:${LD_LIBRARY_PATH} -RUN apt-get update&&apt-get install -y git software-properties-common python-software-properties +RUN apt-get update&&apt-get install -y git software-properties-common python-software-properties python-setuptools python3-setuptools RUN git clone --recursive http://git.tiker.net/trees/pycuda.git RUN git clone --recursive https://github.com/twobombs/cuburn.git From fb1f56fc2f7702ef9076466448a5344f89cafbab Mon Sep 17 00:00:00 2001 From: Aryan Blaauw Date: Tue, 5 Dec 2017 13:27:32 +0100 Subject: [PATCH 24/34] Update Dockerfile --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 1178819..9ec61d2 100644 --- a/Dockerfile +++ b/Dockerfile @@ -10,7 +10,7 @@ RUN apt-get update&&apt-get install -y git software-properties-common python-sof RUN git clone --recursive http://git.tiker.net/trees/pycuda.git RUN git clone --recursive https://github.com/twobombs/cuburn.git -RUN cd /pycuda&&./configure.py&&make&&make install +RUN cd /pycuda&&./configure.py&&./make&&./make install RUN add-apt-repository universe && apt-get update && export DEBIAN_FRONTEND=noninteractive && apt-get install -y libboost-all-dev python-pycuda python-pip && apt-get clean all From 26d469e1565837d416b4671c6b630e4922c21704 Mon Sep 17 00:00:00 2001 From: Aryan Blaauw Date: Tue, 5 Dec 2017 13:41:18 +0100 Subject: [PATCH 25/34] Update Dockerfile --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 9ec61d2..bf140ce 100644 --- a/Dockerfile +++ b/Dockerfile @@ -10,7 +10,7 @@ RUN apt-get update&&apt-get install -y git software-properties-common python-sof RUN git clone --recursive http://git.tiker.net/trees/pycuda.git RUN git clone --recursive https://github.com/twobombs/cuburn.git -RUN cd /pycuda&&./configure.py&&./make&&./make install +# RUN cd /pycuda&&./configure.py&&./make&&./make install RUN add-apt-repository universe && apt-get update && export DEBIAN_FRONTEND=noninteractive && apt-get install -y libboost-all-dev python-pycuda python-pip && apt-get clean all From a5de46ae44f43cd4d662001c34fa1bb6c32bda69 Mon Sep 17 00:00:00 2001 From: Aryan Blaauw Date: Tue, 5 Dec 2017 14:24:53 +0100 Subject: [PATCH 26/34] Update Dockerfile --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index bf140ce..f3b2e85 100644 --- a/Dockerfile +++ b/Dockerfile @@ -5,7 +5,7 @@ LABEL com.nvidia.volumes.needed="nvidia_driver" ENV PATH /usr/local/nvidia/bin:${PATH} ENV LD_LIBRARY_PATH /usr/local/nvidia/lib:/usr/local/nvidia/lib64:${LD_LIBRARY_PATH} -RUN apt-get update&&apt-get install -y git software-properties-common python-software-properties python-setuptools python3-setuptools +RUN apt-get update&&apt-get install -y git software-properties-common python-software-properties python-setuptools python3-setuptools python-migrate && apt-get clean all RUN git clone --recursive http://git.tiker.net/trees/pycuda.git RUN git clone --recursive https://github.com/twobombs/cuburn.git From ff350b41111cfc81e21605b0b633b64f7fe60203 Mon Sep 17 00:00:00 2001 From: Aryan Blaauw Date: Tue, 5 Dec 2017 14:27:30 +0100 Subject: [PATCH 27/34] Update Dockerfile --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index f3b2e85..ae8c535 100644 --- a/Dockerfile +++ b/Dockerfile @@ -8,7 +8,7 @@ ENV LD_LIBRARY_PATH /usr/local/nvidia/lib:/usr/local/nvidia/lib64:${LD_LIBRARY_P RUN apt-get update&&apt-get install -y git software-properties-common python-software-properties python-setuptools python3-setuptools python-migrate && apt-get clean all RUN git clone --recursive http://git.tiker.net/trees/pycuda.git -RUN git clone --recursive https://github.com/twobombs/cuburn.git +RUN git clone --recursive https://github.com/stevenrobertson/cuburn.git # RUN cd /pycuda&&./configure.py&&./make&&./make install From 7a6ee2cff321fd2b8b1d9135f32241620b8ae9e1 Mon Sep 17 00:00:00 2001 From: Aryan Blaauw Date: Mon, 11 Dec 2017 20:36:29 +0100 Subject: [PATCH 28/34] Update Dockerfile --- Dockerfile | 2 -- 1 file changed, 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index ae8c535..7b1974e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -10,8 +10,6 @@ RUN apt-get update&&apt-get install -y git software-properties-common python-sof RUN git clone --recursive http://git.tiker.net/trees/pycuda.git RUN git clone --recursive https://github.com/stevenrobertson/cuburn.git -# RUN cd /pycuda&&./configure.py&&./make&&./make install - RUN add-apt-repository universe && apt-get update && export DEBIAN_FRONTEND=noninteractive && apt-get install -y libboost-all-dev python-pycuda python-pip && apt-get clean all RUN pip install numpy scipy From 08f887cb1be0d4ef4b842d1a0d2f3a183c966318 Mon Sep 17 00:00:00 2001 From: Aryan Blaauw Date: Fri, 15 Dec 2017 13:58:41 +0100 Subject: [PATCH 29/34] Update Dockerfile --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 7b1974e..5571259 100644 --- a/Dockerfile +++ b/Dockerfile @@ -10,6 +10,6 @@ RUN apt-get update&&apt-get install -y git software-properties-common python-sof RUN git clone --recursive http://git.tiker.net/trees/pycuda.git RUN git clone --recursive https://github.com/stevenrobertson/cuburn.git -RUN add-apt-repository universe && apt-get update && export DEBIAN_FRONTEND=noninteractive && apt-get install -y libboost-all-dev python-pycuda python-pip && apt-get clean all +RUN add-apt-repository universe && apt-get update && export DEBIAN_FRONTEND=noninteractive && apt-get upgrade && apt-get install -y libboost-all-dev python-pycuda python-pip && apt-get clean all RUN pip install numpy scipy From c19f9fa4816556eec07c7a689e9fcdf9fb88a474 Mon Sep 17 00:00:00 2001 From: Aryan Blaauw Date: Tue, 29 Jan 2019 09:25:15 +0100 Subject: [PATCH 30/34] upgrade to 18.04 with abstraction upgrade to deploy-nvidia-docker as a base image --- Dockerfile | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/Dockerfile b/Dockerfile index 5571259..3c52395 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,9 +1,4 @@ -FROM nvidia/cuda:8.0-runtime-ubuntu16.04 - -LABEL com.nvidia.volumes.needed="nvidia_driver" - -ENV PATH /usr/local/nvidia/bin:${PATH} -ENV LD_LIBRARY_PATH /usr/local/nvidia/lib:/usr/local/nvidia/lib64:${LD_LIBRARY_PATH} +FROM twobombs/deploy-nvidia-docker RUN apt-get update&&apt-get install -y git software-properties-common python-software-properties python-setuptools python3-setuptools python-migrate && apt-get clean all From 5a8522686b0ba2fb666ec9d4cb259df5a37603e0 Mon Sep 17 00:00:00 2001 From: Aryan Blaauw Date: Tue, 29 Jan 2019 09:32:52 +0100 Subject: [PATCH 31/34] branched & cleanup --- Dockerfile | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/Dockerfile b/Dockerfile index 3c52395..88997c1 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,10 +1,11 @@ FROM twobombs/deploy-nvidia-docker -RUN apt-get update&&apt-get install -y git software-properties-common python-software-properties python-setuptools python3-setuptools python-migrate && apt-get clean all - -RUN git clone --recursive http://git.tiker.net/trees/pycuda.git -RUN git clone --recursive https://github.com/stevenrobertson/cuburn.git - +# add build tools +RUN apt-get update&&apt-get install -y git software-properties-common python-setuptools python3-setuptools python-migrate && apt-get clean all RUN add-apt-repository universe && apt-get update && export DEBIAN_FRONTEND=noninteractive && apt-get upgrade && apt-get install -y libboost-all-dev python-pycuda python-pip && apt-get clean all -RUN pip install numpy scipy +# add dependancies & viewers +RUN git clone --recursive https://github.com/stevenrobertson/cuburn.git +RUN git clone --recursive https://github.com/mebigfatguy/apophysis-j.git +RUN cd /apophysis-j && ant +RUN add-apt-repository ppa:paulo-miguel-dias/mesa -y && pip install numpy scipy From 83297a2a03e3e9b8b97d52ff19ad9b9ad04c228f Mon Sep 17 00:00:00 2001 From: Aryan Blaauw Date: Mon, 18 Feb 2019 15:29:01 +0100 Subject: [PATCH 32/34] 18.04 build --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 88997c1..a272559 100644 --- a/Dockerfile +++ b/Dockerfile @@ -8,4 +8,4 @@ RUN add-apt-repository universe && apt-get update && export DEBIAN_FRONTEND=noni RUN git clone --recursive https://github.com/stevenrobertson/cuburn.git RUN git clone --recursive https://github.com/mebigfatguy/apophysis-j.git RUN cd /apophysis-j && ant -RUN add-apt-repository ppa:paulo-miguel-dias/mesa -y && pip install numpy scipy +RUN add-apt-repository ppa:paulo-miguel-dias/mesa -y && pip install numpy scipy && apt-get clean all From ac006f57c1d85964c2c2d48414c9ab1f59d41285 Mon Sep 17 00:00:00 2001 From: Aryan Blaauw Date: Mon, 18 Feb 2019 16:45:36 +0100 Subject: [PATCH 33/34] +ant --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index a272559..3552bfc 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,7 +2,7 @@ FROM twobombs/deploy-nvidia-docker # add build tools RUN apt-get update&&apt-get install -y git software-properties-common python-setuptools python3-setuptools python-migrate && apt-get clean all -RUN add-apt-repository universe && apt-get update && export DEBIAN_FRONTEND=noninteractive && apt-get upgrade && apt-get install -y libboost-all-dev python-pycuda python-pip && apt-get clean all +RUN add-apt-repository universe && apt-get update && export DEBIAN_FRONTEND=noninteractive && apt-get upgrade && apt-get install -y ant libboost-all-dev python-pycuda python-pip && apt-get clean all # add dependancies & viewers RUN git clone --recursive https://github.com/stevenrobertson/cuburn.git From 31d00c850358d3de254f7410e71f9112b5e7b752 Mon Sep 17 00:00:00 2001 From: Aryan Blaauw Date: Mon, 18 Feb 2019 19:06:56 +0100 Subject: [PATCH 34/34] Update Dockerfile --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 3552bfc..cd411c8 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,7 +2,7 @@ FROM twobombs/deploy-nvidia-docker # add build tools RUN apt-get update&&apt-get install -y git software-properties-common python-setuptools python3-setuptools python-migrate && apt-get clean all -RUN add-apt-repository universe && apt-get update && export DEBIAN_FRONTEND=noninteractive && apt-get upgrade && apt-get install -y ant libboost-all-dev python-pycuda python-pip && apt-get clean all +RUN add-apt-repository universe && apt-get update && export DEBIAN_FRONTEND=noninteractive && apt-get update && apt-get install -y ant libboost-all-dev python-pycuda python-pip && apt-get clean all # add dependancies & viewers RUN git clone --recursive https://github.com/stevenrobertson/cuburn.git