Created
November 8, 2016 20:46
-
-
Save lukeyeager/bc8be9bdddaf0bc73c3faf9acdd1d0c5 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM nvidia/cuda:8.0-cudnn5-devel-ubuntu16.04 | |
MAINTAINER Luke Yeager <lyeager@nvidia.com> | |
RUN apt-get update \ | |
&& apt-get install -y --no-install-recommends \ | |
build-essential \ | |
ca-certificates \ | |
curl \ | |
git \ | |
emacs \ | |
libhdf5-dev \ | |
libopenblas-dev \ | |
python-all-dev \ | |
python-h5py \ | |
python-numpy \ | |
python-pip \ | |
python-scipy \ | |
python-setuptools \ | |
python-wheel \ | |
python-yaml \ | |
sudo \ | |
vim \ | |
wget \ | |
&& rm -rf /var/lib/apt/lists/* | |
RUN pip install theano tensorflow keras |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment