R/dockerfile.R

Defines functions dockerfile

Documented in dockerfile

#' dockerfile creates a basic, empty docker object
#'
#' @return `dockerfile`, a specification of the contents of the dockerfile
#'
#' @export
#'
#' @examples
#' dockerfile()
#'
dockerfile <- function(){
  ret <- list()
  class(ret) <- "dockerfile"
  return(ret)
}
uncoast-unconf/whaler documentation built on Oct. 31, 2020, 9:10 p.m.