Skip to content

Commit 03fd09a

Browse files
committed
Update to Docker containers
Refactoring this is still a TODO for a bit later in the year
1 parent 5a85497 commit 03fd09a

File tree

3 files changed

+8
-3
lines changed

3 files changed

+8
-3
lines changed

ChangeLog

+3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
2024-03-05 Dirk Eddelbuettel <[email protected]>
22

3+
* docker/ci/Dockerfile: Switch the base container to r2u
4+
* docker/plus/Dockerfile: Given r2u, install more binaries
5+
36
* README.md: Add r-universe badge
47

58
2024-02-21 Dirk Eddelbuettel <[email protected]>

docker/ci/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
## Emacs, make this -*- mode: sh; -*-
22

3-
FROM r-base:latest
3+
FROM rocker/r2u:latest
44

55
LABEL org.label-schema.license="GPL-2.0" \
66
org.label-schema.vcs-url="https://github.com/RcppCore/Rcpp" \

docker/plus/Dockerfile

+4-2
Original file line numberDiff line numberDiff line change
@@ -8,18 +8,20 @@ LABEL org.label-schema.license="GPL-2.0" \
88

99
RUN apt-get update \
1010
&& apt-get install -y --no-install-recommends \
11+
r-cran-bh \
1112
r-cran-bit64 \
1213
r-cran-curl \
1314
r-cran-httr \
1415
r-cran-knitr \
1516
r-cran-lazyeval \
17+
r-cran-microbenchmark \
1618
r-cran-openssl \
19+
r-cran-pinp \
1720
r-cran-rcpparmadillo \
1821
r-cran-rcppeigen \
1922
r-cran-rcppgsl \
2023
r-cran-rmarkdown \
2124
r-cran-runit \
22-
r-cran-withr \
23-
&& install.r BH microbenchmark pinp
25+
r-cran-withr
2426

2527
CMD ["bash"]

0 commit comments

Comments
 (0)