Skip to content

Commit 7cb2533

Browse files
committed
add a 'plus-sized' Dockerfile useful to test other packages
1 parent a9d1a57 commit 7cb2533

File tree

2 files changed

+18
-0
lines changed

2 files changed

+18
-0
lines changed

ChangeLog

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
* docker/ci/Dockerfile: Move Dockerfile to docker/ci
44
* docker/run/Dockerfile: Add deployment Dockerfile
5+
* docker/plus/Dockerfile: Add 'plus-sized' Dockerfile suitable for
6+
different add-on packages requiring Rcpp{Armadillo,Eigen,GSL} or BH
57

68
2018-09-02 Dirk Eddelbuettel <[email protected]>
79

docker/plus/Dockerfile

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
## Emacs, make this -*- mode: sh; -*-
2+
3+
FROM rcpp/run
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-rcpparmadillo \
12+
r-cran-rcppeigen \
13+
r-cran-rcpgsl \
14+
&& install.r microbenchmark BH
15+
16+
CMD ["bash"]

0 commit comments

Comments
 (0)