From cc8b7c60ba9d6224f01de6c7a8e93983a3012575 2014-09-24 23:12:20 From: Kyle Kelley Date: 2014-09-24 23:12:20 Subject: [PATCH] Clone ipython/ipython directly --- diff --git a/Dockerfile b/Dockerfile index 9c34be4..7abe6ae 100644 --- a/Dockerfile +++ b/Dockerfile @@ -6,7 +6,10 @@ FROM ipython/scipystack MAINTAINER IPython Project -ADD . /srv/ipython/ +# Can't directly add the source as it won't have the submodules +RUN mkdir /srv/ +WORKDIR /srv/ +RUN git clone --recursive https://github.com/ipython/ipython.git WORKDIR /srv/ipython/ # Installing certain dependencies directly