Commit 12600976 authored by Peter Parente's avatar Peter Parente

Disable pip cache during docker build

Ref #188

(c) Copyright IBM Corp. 2016
parent b7353bf7
...@@ -28,5 +28,5 @@ RUN conda config --add channels r && \ ...@@ -28,5 +28,5 @@ RUN conda config --add channels r && \
'r-rcurl=1.95*' && conda clean -tipsy 'r-rcurl=1.95*' && conda clean -tipsy
# Apache Toree kernel # Apache Toree kernel
RUN pip install toree==0.1.0.dev7 RUN pip --no-cache-dir install toree==0.1.0.dev7
RUN jupyter toree install --user RUN jupyter toree install --user
...@@ -69,7 +69,7 @@ RUN conda install --quiet --yes \ ...@@ -69,7 +69,7 @@ RUN conda install --quiet --yes \
&& conda clean -tipsy && conda clean -tipsy
# Install JupyterHub to get the jupyterhub-singleuser startup script # Install JupyterHub to get the jupyterhub-singleuser startup script
RUN pip install 'jupyterhub==0.5' RUN pip --no-cache-dir install 'jupyterhub==0.5'
USER root USER root
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment