Adds a RUN
instruction to execute commands in a new layer on top of the
current image and commit the results.
Details
When providing multiple commands as a character vector, they will be properly formatted with line continuations in the Dockerfile. This is the recommended approach for package installations to reduce the number of layers in the final image.
See also
dfi_from()
for setting the base image,
dfi_cmd()
for specifying the default command to run, &
Official Docker RUN
documentation
Other dockerfile instruction functions:
dfi_add()
,
dfi_arg()
,
dfi_cmd()
,
dfi_copy()
,
dfi_entrypoint()
,
dfi_env()
,
dfi_expose()
,
dfi_from()
,
dfi_healthcheck()
,
dfi_label()
,
dfi_maintainer()
,
dfi_onbuild()
,
dfi_shell()
,
dfi_stopsignal()
,
dfi_user()
,
dfi_volume()
,
dfi_workdir()
Examples
# Single command
df <- dockerfile() |>
dfi_from("rocker/r-ver:4.4.0") |>
dfi_run("apt update")
df
#> FROM rocker/r-ver:4.4.0
#> RUN apt update
# Multiple commands in a single RUN (better practice)
df <- dockerfile() |>
dfi_from("rocker/r-ver:4.4.0") |>
dfi_run(c(
"apt update",
"apt install -y --no-install-recommends libcurl4-openssl-dev",
"apt clean",
"rm -rf /var/lib/apt/lists/*"
))