From e961ebe10917d6970ff23cfb09e0fcc2156b9412 Mon Sep 17 00:00:00 2001 From: Aryan Blaauw Date: Thu, 24 Aug 2017 20:05:58 +0200 Subject: [PATCH] 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