Build Docker image for a Shiny application
Arguments
- app_dir
Character. Path to the Shiny application directory with Docker configuration.
- tag
Character. The tag for the Docker image. If NULL, a tag will be generated from the directory name.
- build_args
Named character vector. Additional build arguments to pass to Docker.
- quiet
Logical. If TRUE, suppress Docker build output. Default: FALSE.
- ...
Additional arguments passed to processx.
Examples
if (FALSE) { # \dontrun{
# First create Docker configuration
dockerize("path/to/my/shinyapp")
# Then build the image
build_image("path/to/my/shinyapp")
# With a custom tag
build_image("path/to/my/shinyapp", tag = "myorg/myapp:latest")
} # }