Skip to content

Commit ffc8809

Browse files
Merge pull request #798 from shalberd/RStudio_make_R_markup_to_PDF_rendering_work
RHOAIENG-17256: install necessary base OS package to make Knit rendering of R markup to PDF possible
2 parents dfc40fe + 5439de0 commit ffc8809

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

rstudio/c9s-python-3.11/Dockerfile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,8 @@ RUN chmod 1777 /var/run/rstudio-server && \
5050
COPY ${SOURCE_CODE}/rsession.conf /etc/rstudio/rsession.conf
5151

5252
# package installation
53-
RUN dnf install -y libsodium-devel.x86_64 libgit2-devel.x86_64 libcurl-devel harfbuzz-devel.x86_64 fribidi-devel.x86_64 cmake "flexiblas-*" \
53+
# install necessary texlive-framed package to make Knit R markup to PDF rendering possible
54+
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 \
5455
&& dnf clean all && rm -rf /var/cache/yum
5556
# Install R packages
5657
RUN R -e "install.packages('remotes')"

0 commit comments

Comments
 (0)