install direct dependencies, kernels

This commit is contained in:
Kyle Kelley 2014-09-12 17:37:41 +00:00 committed by MinRK
parent 70f63744f2
commit 73f75ab4fb

View File

@ -5,11 +5,11 @@ MAINTAINER IPython Project <ipython-dev@scipy.org>
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"]