Skip to content

Commit c76996e

Browse files
authored
Merge pull request #1082 from mathbunnyru/asalikhov/del_tensorflow_pip_cache
Use pip --no-cache-dir to install tensorflow
2 parents ea409ef + 5bbc94b commit c76996e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tensorflow-notebook/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ FROM $BASE_CONTAINER
66
LABEL maintainer="Jupyter Project <jupyter@googlegroups.com>"
77

88
# Install Tensorflow
9-
RUN pip install --quiet \
10-
'tensorflow==2.1.0' && \
9+
RUN pip install --quiet --no-cache-dir \
10+
'tensorflow==2.2.0' && \
1111
fix-permissions $CONDA_DIR && \
1212
fix-permissions /home/$NB_USER

0 commit comments

Comments
 (0)