this repo has no description
1opam-version: "2.0"
2synopsis: "Dockerfile eDSL and distribution support"
3description: """
4[Docker](http://docker.com) is a container manager that can build images
5automatically by reading the instructions from a `Dockerfile`. A Dockerfile is
6a text document that contains all the commands you would normally execute
7manually in order to build a Docker image. By calling `docker build` from your
8terminal, you can have Docker build your image step-by-step, executing the
9instructions successively. Read more at <http://docker.com>
10
11This library provides a typed OCaml interface to generating Dockerfiles
12programmatically without having to resort to lots of shell scripting and
13awk/sed-style assembly.
14
15ocaml-dockerfile is distributed under the ISC license.
16
17- **HTML Documentation**: <http://anil-code.recoil.org/ocaml-dockerfile>
18- **Source:**: <https://github.com/avsm/ocaml-dockerfile>
19- **Issues**: <https://github.com/avsm/ocaml-dockerfile/issues>
20- **Email**: <anil@recoil.org>"""
21maintainer: "Anil Madhavapeddy <anil@recoil.org>"
22authors: "Anil Madhavapeddy <anil@recoil.org>"
23license: "ISC"
24tags: ["org:mirage" "org:ocamllabs"]
25homepage: "https://github.com/avsm/ocaml-dockerfile"
26doc: "https://avsm.github.io/ocaml-dockerfile/doc"
27bug-reports: "https://github.com/avsm/ocaml-dockerfile/issues"
28depends: [
29 "ocaml" {>= "4.02.3"}
30 "dune"
31 "dockerfile-opam" {>= "3.0.0"}
32 "cmdliner"
33 "rresult" {< "0.7.0"}
34 "fmt"
35 "logs"
36 "bos"
37 "ppx_sexp_conv"
38]
39build: [
40 ["dune" "subst"] {dev}
41 ["dune" "build" "-p" name "-j" jobs]
42]
43dev-repo: "git+https://github.com/avsm/ocaml-dockerfile.git"
44url {
45 src:
46 "https://github.com/avsm/ocaml-dockerfile/releases/download/v6.1.0/dockerfile-v6.1.0.tbz"
47 checksum: [
48 "sha256=47f66bea6a3b6b3ab59b4c3f5f3a0250fc52d79cc688371a650707ce43623196"
49 "md5=b278021bc9f093fc831364eb0a66df52"
50 ]
51}