Module Dockerfile_linux.Apt
Rules for Apt-based distributions
val update : Dockerfile.t
update
will runapt-get update && apt-get upgrade
non-interactively.
val install : ('a, unit, string, Dockerfile.t) Pervasives.format4 ‑> 'a
install fmt
willapt-get update && apt-get install
the packages specified by thefmt
format string.
val add_user : ?uid:int ‑> ?gid:int ‑> ?sudo:bool ‑> string ‑> Dockerfile.t
add_user username
will install a new user with nameusername
and a locked password. Ifsudo
is true then root access with no password will also be configured. The default value forsudo
isfalse
.
val dev_packages : ?extra:string ‑> unit ‑> Dockerfile.t
dev_packages ?extra ()
will install the base development tools andsudo
,passwd
andgit
and X11. Extra packages may also be optionally supplied viaextra
.
val install_system_ocaml : Dockerfile.t
Install the system OCaml packages via
apt-get