From 5439de060bd61a7df97daa8e57b0a94e5689d56a Mon Sep 17 00:00:00 2001 From: shalberd <21118431+shalberd@users.noreply.github.com> Date: Thu, 5 Dec 2024 17:11:22 +0100 Subject: [PATCH] install necessary base base OS package to make Knit rendering of R markup to PDF work Signed-off-by: shalberd <21118431+shalberd@users.noreply.github.com> --- rstudio/c9s-python-3.11/Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/rstudio/c9s-python-3.11/Dockerfile b/rstudio/c9s-python-3.11/Dockerfile index adde4dbb5..ee9eba021 100644 --- a/rstudio/c9s-python-3.11/Dockerfile +++ b/rstudio/c9s-python-3.11/Dockerfile @@ -50,7 +50,8 @@ RUN chmod 1777 /var/run/rstudio-server && \ COPY ${SOURCE_CODE}/rsession.conf /etc/rstudio/rsession.conf # package installation -RUN dnf install -y libsodium-devel.x86_64 libgit2-devel.x86_64 libcurl-devel harfbuzz-devel.x86_64 fribidi-devel.x86_64 cmake "flexiblas-*" \ +# install necessary texlive-framed package to make Knit R markup to PDF rendering possible +RUN dnf install -y libsodium-devel.x86_64 libgit2-devel.x86_64 libcurl-devel harfbuzz-devel.x86_64 fribidi-devel.x86_64 cmake "flexiblas-*" texlive-framed \ && dnf clean all && rm -rf /var/cache/yum # Install R packages RUN R -e "install.packages('remotes')"