cuburn/Dockerfile

15 lines
379 B
Docker
Raw Normal View History

2017-08-24 14:05:58 -04:00
FROM twobombs/deploy-nvidia-docker
RUN git clone --recursive http://git.tiker.net/trees/pycuda.git
2017-08-25 03:50:38 -04:00
RUN git clone --recursive https://github.com/twobombs/cuburn.git
2017-08-24 14:05:58 -04:00
2017-08-27 16:00:29 -04:00
RUN cd /pycuda&&./configure&&make&&make install
2017-08-24 14:05:58 -04:00
RUN add-apt-repository universe
RUN apt-get update
2017-08-25 04:22:42 -04:00
RUN apt-get install -y libboost-all-dev python-pycuda python-pip
2017-08-24 14:05:58 -04:00
RUN pip install numpy scipy
EXPOSE 5900 6080