diff --git a/torch/Dockerfile b/torch/Dockerfile new file mode 100644 index 0000000..2b26cea --- /dev/null +++ b/torch/Dockerfile @@ -0,0 +1,11 @@ +# Start with NVIDIA cuDNN base image +FROM nvidia/cuda:9.0-cudnn7-devel-ubuntu16.04 +MAINTAINER Vladimir Ivanov + +# Install basic deps +RUN apt-get update && apt-get install -y \ + git sudo + +# Run Torch7 installation scripts +RUN git clone https://github.com/torch/distro.git /root/torch --recursive +RUN cd /root/torch && bash install-deps && ./install.sh