├── .dockerignore ├── .travis.yml ├── 3.4.0 └── Dockerfile ├── 3.4.1 └── Dockerfile ├── Dockerfile ├── README.md ├── circle.yml └── devel └── Dockerfile /.dockerignore: -------------------------------------------------------------------------------- 1 | .git 2 | dev 3 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocker-org/ropensci/HEAD/.travis.yml -------------------------------------------------------------------------------- /3.4.0/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocker-org/ropensci/HEAD/3.4.0/Dockerfile -------------------------------------------------------------------------------- /3.4.1/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocker-org/ropensci/HEAD/3.4.1/Dockerfile -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocker-org/ropensci/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocker-org/ropensci/HEAD/README.md -------------------------------------------------------------------------------- /circle.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocker-org/ropensci/HEAD/circle.yml -------------------------------------------------------------------------------- /devel/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocker-org/ropensci/HEAD/devel/Dockerfile --------------------------------------------------------------------------------