From 8790cc182e1cd93103441ffc8139d49db383c152 Mon Sep 17 00:00:00 2001 From: Kyle Kelley Date: Thu, 10 Sep 2015 15:30:40 -0500 Subject: [PATCH] Only install ipython as is --- Dockerfile | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/Dockerfile b/Dockerfile index 74fa33454..1e8f01d09 100644 --- a/Dockerfile +++ b/Dockerfile @@ -46,16 +46,13 @@ RUN pip3 install --upgrade setuptools pip RUN mkdir -p /srv/ WORKDIR /srv/ -RUN git clone --depth 1 https://github.com/ipython/ipykernel /srv/ipykernel -WORKDIR /srv/ipykernel -RUN pip2 install --pre -e . -RUN pip3 install --pre -e . +RUN pip3 install ipython ADD . /srv/notebook WORKDIR /srv/notebook/ RUN chmod -R +rX /srv/notebook -RUN pip3 install -e .[test] +RUN pip3 install --pre -e .[test] # install kernels RUN python2 -m ipykernel.kernelspec