I'm trying to install R devel with ASAN USBAN from rocker. Following the README I tried:
sudo docker run --rm -ti rocker/r-devel-san
This took a long time to download but at the end it was ok. Then I installed the sanitizers package to test R against known errors.
install.package("sanitizers")
And I tried to get an error
> sanitizers::stackAddressSanitize(42)
[1] 24
> sanitizers::heapAddressSanitize(1)
[1] 0
I didn't get any error so I guess that the R version I'm running with docker is not built with sanitizer support. Or I simply missed something somewhere. It is my first time with docker.