File tree Expand file tree Collapse file tree 2 files changed +26
-0
lines changed Expand file tree Collapse file tree 2 files changed +26
-0
lines changed Original file line number Diff line number Diff line change @@ -19,3 +19,4 @@ inst/include/Rcpp.h.old
19
19
LICENSE
20
20
.*.tar.gz
21
21
\.editorconfig
22
+ docker
Original file line number Diff line number Diff line change
1
+ # # Emacs, make this -*- mode: sh; -*-
2
+
3
+ FROM r-base:latest
4
+
5
+ LABEL org.label-schema.license=" GPL-2.0" \
6
+ org.label-schema.vcs-url=" https://github.com/RcppCore/Rcpp" \
7
+ maintainer=
" Dirk Eddelbuettel <[email protected] >"
8
+
9
+ RUN apt-get update \
10
+ && apt-get install -y --no-install-recommends \
11
+ r-cran-runit \
12
+ r-cran-inline \
13
+ r-cran-rmarkdown \
14
+ r-cran-knitr \
15
+ r-cran-pkgkitten \
16
+ r-cran-curl \
17
+ r-cran-openssl \
18
+ r-cran-httr \
19
+ r-cran-lazyeval \
20
+ r-cran-withr \
21
+ && install.r rbenchmark pinp covr \
22
+ && mkdir ~ /.R \
23
+ && echo _R_CHECK_FORCE_SUGGESTS_=FALSE > ~ /.R/check.Renviron
24
+
25
+ CMD [" bash" ]
You can’t perform that action at this time.
0 commit comments