Description Usage Arguments Value See Also Examples
Add software to install to docker image via 'apt-get'
1 |
df |
a dockerfile object from 'dockerfile()' |
... |
The software to install to the docker image |
dockerfile
Other dockerfile: build
, cmd
,
copy
, expose
,
from
, install_r_lib_version
,
install_r_lib
, run
,
update
, write_dockerfile
1 2 3 4 5 6 7 8 9 10 | # Start a dockerfile based off of the rocker/shiny image to generate a
# shiny server using R version 3.6.1, update all existing software
# and install git and curl.
dockerfile() %>%
from("rocker/r-ver:devel") %>%
update() %>%
install("sudo","gdebi","pandoc","pandoc-citeproc",
"libcurl4-gnutls-dev","libcairo2-dev",
"libxtdev","wget")
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.