I've noticed a few strange things.
The install script for TexLive is copied but not run? Although TexLive 2024 is installed in rocker/verse:latest (eb0074c1abee)
|
COPY scripts/install_texlive.sh /rocker_scripts/install_texlive.sh |
Running that script inside a new docker installs the latest TexLive. But shouldn't it skip the installation because of this line?
|
if [[ -x "/usr/bin/latex" ]]; then |
Dockerfile
FROM rocker/verse:latest
RUN /rocker_scripts/install_texlive.sh
I've noticed a few strange things.
The install script for TexLive is copied but not run? Although TexLive 2024 is installed in
rocker/verse:latest (eb0074c1abee)rocker-versioned2/dockerfiles/verse_4.4.3.Dockerfile
Line 52 in abe4fc1
Running that script inside a new docker installs the latest TexLive. But shouldn't it skip the installation because of this line?
rocker-versioned2/scripts/install_texlive.sh
Line 4 in abe4fc1
Dockerfile