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 "csv" {>= "1.4"} 38 "ppx_sexp_conv" 39] 40build: [ 41 ["dune" "subst"] {dev} 42 ["dune" "build" "-p" name "-j" jobs] 43] 44dev-repo: "git+https://github.com/avsm/ocaml-dockerfile.git" 45url { 46 src: 47 "https://github.com/avsm/ocaml-dockerfile/releases/download/v6.0.0/dockerfile-v6.0.0.tbz" 48 checksum: [ 49 "sha256=28233d86722cb707c134905ecf8315864507bc5a84fb7e618649e5381fbdf0fe" 50 "md5=a062b0263ead65417c01c521730a74b3" 51 ] 52}