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')"