package dockerfile

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type

Rules for RPM-based distributions

val install : ('a, unit, string, t) format4 -> 'a

install fmt will run yum install on the supplied package list.

val groupinstall : ('a, unit, string, t) format4 -> 'a

groupinstall fmt will run yum groupinstall on the supplied package list.

val add_user : ?sudo:bool -> string -> t

add_user username will install a new user with name username and a locked password. If sudo is true then root access with no password will also be configured. The default value for sudo is false.

val dev_packages : ?extra:string -> unit -> t

dev_packages ?extra () will install the base development tools and sudo, passwd and git. Extra packages may also be optionally supplied via extra.