Skip to content

Commit 89fb7a8

Browse files
authored
Merge pull request #638 from betatim/just-delete-it
[MRG] Remove conda download cache explicitly
2 parents 9bcc41a + 405a0f6 commit 89fb7a8

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

repo2docker/buildpacks/conda/__init__.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,8 @@ def get_assemble_scripts(self):
181181
r"""
182182
conda env update -n {0} -f "{1}" && \
183183
conda clean -tipsy && \
184-
conda list -n {0}
184+
conda list -n {0} && \
185+
rm -rf /srv/conda/pkgs
185186
""".format(env_name, environment_yml)
186187
))
187188
return super().get_assemble_scripts() + assembly_scripts

0 commit comments

Comments
 (0)