Commit c76996e2 authored by Peter Parente's avatar Peter Parente Committed by GitHub

Merge pull request #1082 from mathbunnyru/asalikhov/del_tensorflow_pip_cache

Use pip --no-cache-dir to install tensorflow
parents ea409ef1 5bbc94ba
...@@ -6,7 +6,7 @@ FROM $BASE_CONTAINER ...@@ -6,7 +6,7 @@ FROM $BASE_CONTAINER
LABEL maintainer="Jupyter Project <jupyter@googlegroups.com>" LABEL maintainer="Jupyter Project <jupyter@googlegroups.com>"
# Install Tensorflow # Install Tensorflow
RUN pip install --quiet \ RUN pip install --quiet --no-cache-dir \
'tensorflow==2.1.0' && \ 'tensorflow==2.2.0' && \
fix-permissions $CONDA_DIR && \ fix-permissions $CONDA_DIR && \
fix-permissions /home/$NB_USER fix-permissions /home/$NB_USER
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