What directories does the clojure CLI use for caching? I'm setting up Docker builds and trying to mount in directories to prevent constant checkouts / downloads. So far, I'm just doing RUN --mount=type=cache,id=mavencache,target=/root/.m2/repository but that doesn't seem sufficient
Maven: ~/.m2/repository Git: ~/.gitlibs CP cache: .cpcache/
more info at https://clojure.org/reference/clojure_cli#dirs
haha. thanks! I don't know why I struggled to find this information when it's right there in the docs
I guess ~/.clojure for the config dir is probably also useful