rocker-org / rocker-versioned

Run current & prior versions of R using docker
https://hub.docker.com/r/rocker/r-ver
GNU General Public License v2.0
297 stars 169 forks source link

bug-fix: libpcre2-8-0 is needed along with libpcre2 for r-devel #207

Closed nturaga closed 4 years ago

nturaga commented 4 years ago

Without this library, the following error is produced

$$ docker run -it rocker/r-ver:devel bash
root@012af310be7d:/# R
/usr/local/lib/R/bin/exec/R: error while loading shared libraries: libpcre2-8.so.0: cannot open shared object file: No such file or directory

The same error doesn't show up in the rocker/rstudio and other containers which inherit from this image is because another linux package is installing the dependency libpcre2-8-0 on the succeeding images.

But for the rocker/r-ver:devel image to work, this dependency is needed.

cboettig commented 4 years ago

cool, thanks for the patch!