Skip to content

Commit 79565f9

Browse files
authored
Merge pull request #1089 from RcppCore/feature/docker_3.6
simple change to define a Docker target for R 3.6.3
2 parents 0e02729 + 597c1bb commit 79565f9

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

docker/ci-3.6/Dockerfile

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
## Emacs, make this -*- mode: sh; -*-
2+
3+
FROM r-base:3.6.3
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 git \
11+
&& install.r inline pkgKitten rbenchmark tinytest
12+
13+
ENV _R_CHECK_FORCE_SUGGESTS_ FALSE
14+
ENV _R_CHECK_TESTS_NLINES_ 0
15+
ENV RunAllRcppTests yes
16+
17+
CMD ["bash"]

0 commit comments

Comments
 (0)