You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I would've expected this command to give empty output:
$ docker run --rm -it continuumio/miniconda3 find /opt/conda/ -name '*.a'/opt/conda/lib/libncurses++.a/opt/conda/lib/libtinfo.a/opt/conda/lib/libform.a
The problem is that these are symlinks and this command deletes the targets before processing the links themselves. Could be fixed using something like this:
But I think it would be nicer to implement this in conda itself and have an option it, like how the debian/ubuntu images have /etc/apt/apt.conf.d/docker-clean.
The text was updated successfully, but these errors were encountered:
I would've expected this command to give empty output:
The problem is that these are symlinks and this command deletes the targets before processing the links themselves. Could be fixed using something like this:
But I think it would be nicer to implement this in
conda
itself and have an option it, like how the debian/ubuntu images have/etc/apt/apt.conf.d/docker-clean
.The text was updated successfully, but these errors were encountered: