/dhall-containerfile/Containerfile/from.dhall
Copy path to clipboardA convenient function to create from
Examples
from "fedora" === [ Statement.From "fedora" ]
Source
--| A convenient function to create from
let Statement = ./Statement.dhall
let from
: Text -> List Statement
= \(from : Text) -> [ Statement.From from ]
let example0 = assert : from "fedora" === [ Statement.From "fedora" ]
in from