Linux.RPMRules for RPM-based distributions
val update : Dockerfile.tupdate will run yum update -y
val install : ('a, unit, string, Dockerfile.t) Stdlib.format4 -> 'ainstall fmt will run yum install on the supplied package list.
val groupinstall : int -> ('a, unit, string, Dockerfile.t) Stdlib.format4 -> 'agroupinstall ver fmt will run yum groupinstall or yum group install on the supplied package list. ver selects the appropriate syntax
val add_user : ?uid:int -> ?gid:int -> ?sudo:bool -> string -> Dockerfile.tadd_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 -> Dockerfile.tdev_packages ?extra () will install the base development tools and sudo, passwd and git. Extra packages may also be optionally supplied via extra.
ocaml_depexts v returns packages that are required by the OCaml distribution at version v.
val install_system_ocaml : Dockerfile.tInstall the system OCaml packages via Yum