View source: R/use_dockerfile.R
use_dockerfile | R Documentation |
Use dockerfile template
use_dockerfile( name, person, description, license = "Artistic-2.0", path = tempdir() )
name |
'character(1)', name of the image. |
person |
'person(1)', class person which holds information. Only the maintainer is listed on the LABEL information of the Docker image. |
description |
'character(1)', description of image. |
license |
'character(1)', license of image. |
path |
'character(1)', parent path where folder repository should be created. |
The 'use_dockerfile' function is used to create new dockerfiles based on the bioconductor/bioconductor_docker set of images. The function provides a template for creating your image.
invisible
## detailed example use_dockerfile( name = "custom_image", person = person("Foo", "Bar", email="foo@bar.com", role = c("aut", "cre") ), description = "My image", license = "GPL", path = tempdir() ) ## minimal exmaple use_dockerfile("custom_image", person( "abc", "def", email = "abc@def.com", role = c("cre", "aut") ) )
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.