Skip to content

Commit a9d1a57

Browse files
committed
have two Dockerfiles docker/{ci,run} for test and deployment
1 parent 579c47d commit a9d1a57

File tree

3 files changed

+20
-0
lines changed

3 files changed

+20
-0
lines changed

ChangeLog

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
2018-09-15 Dirk Eddelbuettel <[email protected]>
2+
3+
* docker/ci/Dockerfile: Move Dockerfile to docker/ci
4+
* docker/run/Dockerfile: Add deployment Dockerfile
5+
16
2018-09-02 Dirk Eddelbuettel <[email protected]>
27

38
* .travis.yml: Switch to rcpp/rcpp-testing container
File renamed without changes.

docker/run/Dockerfile

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
## Emacs, make this -*- mode: sh; -*-
2+
3+
FROM rcpp/ci
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+
## If on CRAN, install the latest version from CRAN
10+
RUN install.r Rcpp
11+
12+
## Alternatively, install from Github (after first installing remotes)
13+
#RUN install.r remotes && installGithub.r RcppCore/Rcpp
14+
15+
CMD ["bash"]

0 commit comments

Comments
 (0)