-
Notifications
You must be signed in to change notification settings - Fork 271
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'upstream/master'
- Loading branch information
Showing
5 changed files
with
44 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
## Rocker r-bspm | ||
|
||
The `r-bspm` Dockerfiles from the [Rocker Project](https://www.rocker-project.org/) | ||
provide basic building blocks using Ubuntu and Debian with the | ||
[bspm](https://cran.r-project.org/package=bspm) package to bridge from the R package | ||
management to the system package manager. | ||
|
||
Documentation is being added at the [Wiki](https://github.com/rocker-org/rocker/wiki). Please file | ||
issue tickets at [the rocker/ issue tracker](https://github.com/rocker-org/rocker/issues). |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
## Emacs, make this -*- mode: sh; -*- | ||
|
||
FROM rocker/r-ubuntu:18.04 | ||
|
||
LABEL org.label-schema.license="GPL-2.0" \ | ||
org.label-schema.vcs-url="https://github.com/rocker-org/rocker" \ | ||
maintainer="Dirk Eddelbuettel <edd@debian.org>" | ||
|
||
## This was not needed before but we need it now | ||
#ENV DEBIAN_FRONTEND noninteractive | ||
|
||
RUN add-apt-repository --yes "ppa:edd/r-4.0" \ | ||
&& apt-get install -y --no-install-recommends \ | ||
r-cran-bspm \ | ||
sudo \ | ||
&& echo "bspm::enable()" >> /etc/R/Rprofile.site \ | ||
&& echo "options(bspm.sudo=TRUE)" >> /etc/R/Rprofile.site \ | ||
&& echo 'APT::Install-Recommends "false";' > /etc/apt/apt.conf.d/90local-no-recommends \ | ||
&& echo "docker ALL=(ALL) NOPASSWD: ALL" > /etc/sudoers.d/local-docker-user \ | ||
&& chmod 0440 /etc/sudoers.d/local-docker-user | ||
|
||
CMD ["bash"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
## Rocker r-rspm | ||
|
||
The `r-rspm` Dockerfiles from the [Rocker Project](https://www.rocker-project.org/) provides basic building using Ubuntu (as opposed to Debian in `r-base`) upon which other containers can be built. They also offer (initial, still somewhat experimental) support for the [RSPM (RStudio Package Manager)](https://rstudio.com/products/package-manager/) binaries for the supported `bionic` (aka 18.04) and `focal` (aka 20.04) releases. | ||
|
||
As an alternative consider the the [`r-ubuntu` containers](https://hub.docker.com/repository/docker/rocker/r-ubuntu) which are also useful due to the large number of packages offered via the PPAs, and their more complete package dependency tracking. However, RSPM offers more binaries. | ||
|
||
Documentation is being added at the [Wiki](https://github.com/rocker-org/rocker/wiki). Please file | ||
issue tickets at [the rocker/ issue tracker](https://github.com/rocker-org/rocker/issues). |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters