Use `-f --all` for conda clean up

pull/666/head
Tim Head 2019-05-05 14:55:58 +02:00
rodzic 3a6e4b4851
commit f51ba7604e
2 zmienionych plików z 5 dodań i 6 usunięć

Wyświetl plik

@ -182,9 +182,8 @@ class CondaBuildPack(BaseImage):
'${NB_USER}', '${NB_USER}',
r""" r"""
conda env update -p {0} -f "{1}" && \ conda env update -p {0} -f "{1}" && \
conda clean -tipsy && \ conda clean --all -f -y && \
conda list -p {0} && \ conda list -p {0}
rm -rf /srv/conda/pkgs
""".format(env_prefix, environment_yml) """.format(env_prefix, environment_yml)
)) ))
return super().get_assemble_scripts() + assembly_scripts return super().get_assemble_scripts() + assembly_scripts

Wyświetl plik

@ -68,12 +68,12 @@ if [[ -f /tmp/kernel-environment.yml ]]; then
fi fi
# Clean things out! # Clean things out!
conda clean -tipsy conda clean --all -f -y
rm -rf /srv/conda/pkgs
# Remove the big installer so we don't increase docker image size too much # Remove the big installer so we don't increase docker image size too much
rm ${INSTALLER_PATH} rm ${INSTALLER_PATH}
# Remove pip cache created as part of installing miniconda
# Remove the pip cache created as part of installing miniconda
rm -rf /root/.cache rm -rf /root/.cache
chown -R $NB_USER:$NB_USER ${CONDA_DIR} chown -R $NB_USER:$NB_USER ${CONDA_DIR}