File tree Expand file tree Collapse file tree 2 files changed +18
-0
lines changed
Expand file tree Collapse file tree 2 files changed +18
-0
lines changed Original file line number Diff line number Diff line change 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
682018-09-02 Dirk Eddelbuettel <edd@debian.org>
79
Original file line number Diff line number Diff line change 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 <edd@debian.org>"
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" ]
You can’t perform that action at this time.
0 commit comments