package dockerfile

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

Linux-specific shell commands that are of general use.

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

run_sh fmt will execute /bin/sh -c "fmt" after quoting fmt.

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

run_as_user user fmt will execute sudo -u user /bin/sh -c "fmt" after quoting fmt.

module RPM : sig ... end

Rules for RPM-based distributions

module Apt : sig ... end

Rules for Apt-based distributions

module Git : sig ... end

Rules for Git