You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* docs(README.md): Explicitly mention which R binary to use
* refactor: Update default CMD to `bash`
* Previously inherited a default `CMD ["R"]` which put users
in the non-instrumented R-release
* refactor: Don't use deprecated MAINTAINER
* Previously docker would emit following warning:
`WARN: MaintainerDeprecated: Maintainer instruction is deprecated in favor of using label`
* "supposed" to instead use `org.opencontainers.image.authors` which is a freeform string:
+ https://docs.docker.com/reference/build-checks/maintainer-deprecated/
+ https://github.com/opencontainers/image-spec/blob/main/annotations.md#pre-defined-annotation-keys
* refactor: Use "ENV key=value"
* Previously docker would warn:
`LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format`
Copy file name to clipboardExpand all lines: README.md
+5-1Lines changed: 5 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -9,7 +9,11 @@ and to
9
9
[Using the Undefined Behaviour Sanitizer](http://cran.r-project.org/doc/manuals/r-devel/R-exts.html#Using-Undefined-Behaviour-Sanitizer).
10
10
11
11
Both require a particularly instrumented binary of R. This repository
12
-
provides a Docker container with such a binary, based on the R-devel sources.
12
+
provides a Docker container with such a binary, based on the R-devel sources:
13
+
14
+
* This particularly instrumented binary of `R` is available on the path as `Rdevel` and for convenience is also symbolically linked on the path as `RD`.
15
+
* The particularly instrumented versions of `Rscript` on the path are `Rscriptdevel` with symbolic link `RDscript` for convenience.
16
+
* The `R` and `Rscript` binaries in the path of this container are inherited from the `r-base/latest` container and are **not** particularly instrumented with sanitizer support.
0 commit comments