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