mirror of
https://github.com/google/material-design-icons.git
synced 2026-02-19 16:41:42 +01:00
This replaces the failing `docker rmi $(docker image ls -aq)` command with the more flexible and versatile `docker image prune -a -f` command. The `docker image prune -a -f` command will prune images from previous runs if they are present, and will do nothing if there are no old images present. This accomplishes the same thing that the ` docker rmi $(docker image ls -aq)` was trying to accomplish (but was failing when there were no previous/old images to find/delete)