Skip to content

Commit c5e757d

Browse files
authored
Merge pull request #43 from eyra/switch-r-to-r2u-to-fix-dependency-issues
Switch the R Docker file to r2u
2 parents 95e7699 + 6e8dc3e commit c5e757d

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

packages.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
#!/usr/bin/env Rscript
22

3-
install.packages(c("dplyr","data.table","tidyr"), repos="https://cran.r-project.org")
3+
install.packages(c("dplyr","data.table","tidyr"), repos="https://cran.r-project.org", dependencies=TRUE)

r.Dockerfile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
FROM r-base:4.3.3
1+
FROM rocker/r2u:22.04
2+
23

34
RUN mkdir /app
45
WORKDIR /app

0 commit comments

Comments
 (0)