Skip to content
This repository was archived by the owner on Mar 2, 2022. It is now read-only.

Commit e86ca09

Browse files
committed
3.4.4
1 parent 089e233 commit e86ca09

File tree

5 files changed

+10
-12
lines changed

5 files changed

+10
-12
lines changed

X11/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM rocker/r-ver:3.4.3
1+
FROM rocker/r-ver:3.4.4
22

33
## R's X11 runtime dependencies
44
RUN apt-get update \

r-ver/Dockerfile

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ LABEL org.label-schema.license="GPL-2.0" \
77

88
ARG R_VERSION
99
ARG BUILD_DATE
10-
ENV BUILD_DATE ${BUILD_DATE:-2018-03-15}
11-
ENV R_VERSION=${R_VERSION:-3.4.3} \
10+
ENV BUILD_DATE ${BUILD_DATE:-2018-04-23}
11+
ENV R_VERSION=${R_VERSION:-3.4.4} \
1212
LC_ALL=en_US.UTF-8 \
1313
LANG=en_US.UTF-8 \
1414
TERM=xterm
@@ -121,9 +121,6 @@ RUN apt-get update \
121121
&& ln -s /usr/local/lib/R/site-library/littler/examples/install2.r /usr/local/bin/install2.r \
122122
&& ln -s /usr/local/lib/R/site-library/littler/examples/installGithub.r /usr/local/bin/installGithub.r \
123123
&& ln -s /usr/local/lib/R/site-library/littler/bin/r /usr/local/bin/r \
124-
## TEMPORARY WORKAROUND to get more robust error handling for install2.r prior to littler update
125-
&& curl -O /usr/local/bin/install2.r https://github.com/eddelbuettel/littler/raw/master/inst/examples/install2.r \
126-
&& chmod +x /usr/local/bin/install2.r \
127124
## Clean up from R source install
128125
&& cd / \
129126
&& rm -rf /tmp/* \

rstudio/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
FROM rocker/r-ver:3.4.3
1+
FROM rocker/r-ver:3.4.4
22

33
ARG RSTUDIO_VERSION
44
## Comment the next line to use the latest RStudio Server version by default
5-
ENV RSTUDIO_VERSION=${RSTUDIO_VERSION:-1.1.442}
5+
ENV RSTUDIO_VERSION=${RSTUDIO_VERSION:-1.1.447}
66
ENV PATH=/usr/lib/rstudio-server/bin:$PATH
77

88
## Download and install RStudio server & dependencies

tidyverse/Dockerfile

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,14 @@
1-
FROM rocker/rstudio:3.4.3
1+
FROM rocker/rstudio:3.4.4
22

33
RUN apt-get update -qq && apt-get -y --no-install-recommends install \
44
libxml2-dev \
55
libcairo2-dev \
6-
libsqlite-dev \
6+
libsqlite3-dev \
77
libmariadbd-dev \
88
libmariadb-client-lgpl-dev \
99
libpq-dev \
1010
libssh2-1-dev \
11+
unixodbc-dev \
1112
&& R -e "source('https://bioconductor.org/biocLite.R')" \
1213
&& install2.r --error \
1314
--deps TRUE \

verse/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM rocker/tidyverse:3.4.3
1+
FROM rocker/tidyverse:3.4.4
22
ENV PATH=$PATH:/opt/TinyTeX/bin/x86_64-linux/
33

44
## Add LaTeX, rticles and bookdown support
@@ -38,7 +38,7 @@ RUN wget "https://travis-bin.yihui.name/texlive-local.deb" \
3838
&& rm -rf /var/lib/apt/lists/ \
3939
## Use tinytex for LaTeX installation
4040
&& install2.r --error tinytex \
41-
## Admin-based install of TinyTeX:
41+
## Admin-based install of TinyTeX:
4242
&& wget -qO- \
4343
"https://github.com/yihui/tinytex/raw/master/tools/install-unx.sh" | \
4444
sh -s - --admin --no-path \

0 commit comments

Comments
 (0)