From 73f75ab4fb1081a6d28af1937bdf68d39c0588d1 Mon Sep 17 00:00:00 2001 From: Kyle Kelley Date: Fri, 12 Sep 2014 17:37:41 +0000 Subject: [PATCH] install direct dependencies, kernels --- Dockerfile | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/Dockerfile b/Dockerfile index 65fc98e54..9eb45f5a9 100644 --- a/Dockerfile +++ b/Dockerfile @@ -5,11 +5,11 @@ MAINTAINER IPython Project ADD . /srv/ipython/ WORKDIR /srv/ipython/ -RUN pip2 install -e .[all] -RUN pip3 install -e .[all] +RUN pip2 install fabric +RUN pip3 install jsonschema jsonpointer fabric -#RUN ipython2 kernelspec install-self -#RUN ipython3 kernelspec install-self +RUN pip2 install . +RUN pip3 install . EXPOSE 8888 @@ -25,4 +25,7 @@ ENV USER jupyter WORKDIR /home/jupyter/ +RUN ipython2 kernelspec install-self +RUN ipython3 kernelspec install-self + CMD ["/usr/local/bin/notebook.sh"]