Skip to content

Commit 1f18ab2

Browse files
committed
Fix installation R liberaires
1 parent e1dc3e7 commit 1f18ab2

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

ir/ir-with-libs/Dockerfile.ir

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,6 @@ RUN R -e "install.packages('plotly', repos='https://cloud.r-project.org', depend
1616
# Workaround for Java to install correctly
1717
RUN mkdir -p /usr/share/man/man1/
1818

19-
RUN R -e "install.packages(c('rgl', 'hdf5r', 'rJava'), dependencies = T)"
19+
RUN R -e "install.packages('rgl', repos='https://cloud.r-project.org', dependencies=TRUE)"
20+
RUN R -e "install.packages('hdf5r', repos='https://cloud.r-project.org', dependencies=TRUE)"
21+
RUN R -e "install.packages('rJava', repos='https://cloud.r-project.org', dependencies=TRUE)"

0 commit comments

Comments
 (0)