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

TeX missing in rocker/verse:latest / 4.0.0 #215

Closed dstolpmann closed 4 years ago

dstolpmann commented 4 years ago

Hi, the latest version of the rocker/verse image (4.0.0) seems to miss all TeX programs.

This might be caused by only installing the .deb package of tinytex in https://github.com/rocker-org/rocker-versioned2/blob/master/scripts/install_verse.sh, which is only a couple of KBs in size and does not contain any binaries. The previous version of the Dockerfile (https://github.com/rocker-org/rocker-versioned/blob/master/verse/latest.Dockerfile) also executes a script to install tinytex, which is missing in the newer version.

Best regards, dstolpmann

cboettig commented 4 years ago

@dstolpmann whoopsies! That .deb package is a dummy package for tinytex, but install_verse.sh should have called install_texlive.sh and it didn't.

(having these as separate modules means it should be easier to add texlive/tinytex without adding all of verse, but we had some indecision on whether the install_verse.sh should always include texlive. anyway, should have a fix up soon! thanks for the bug report)

dstolpmann commented 4 years ago

I just checked and TeX is now available in rocker/verse:latest.

@cboettig Thank you!