-
Notifications
You must be signed in to change notification settings - Fork 18
/
dockerfile.opam
61 lines (61 loc) · 1.44 KB
/
dockerfile.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
52
53
54
55
56
57
58
59
60
61
# This file is generated by dune, edit dune-project instead
opam-version: "2.0"
synopsis: "Dockerfile eDSL in OCaml"
description: """
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.
"""
maintainer: [
"Anil Madhavapeddy <[email protected]>"
"Antonin Décimo <[email protected]>"
"David Allsopp <[email protected]>"
"Kate <[email protected]>"
"Thomas Leonard <[email protected]>"
"Tim McGilchrist <[email protected]>"
]
authors: [
"Anil Madhavapeddy"
"Anton Kochkov"
"Antonin Décimo"
"David Allsopp"
"Ewan Mellor"
"Kate Deplaix"
"Louis Gesbert"
"Mark Elvers"
"Thomas Leonard"
"Tim McGilchrist"
]
license: "ISC"
tags: ["org:mirage" "org:ocamllabs"]
homepage: "https://github.com/ocurrent/ocaml-dockerfile"
doc: "https://ocurrent.github.io/ocaml-dockerfile/doc/dockerfile/"
bug-reports: "https://github.com/ocurrent/ocaml-dockerfile/issues"
depends: [
"dune" {>= "3.0"}
"ocaml" {>= "4.08"}
"fmt" {>= "0.8.7"}
"ppx_sexp_conv" {>= "v0.9.0"}
"sexplib"
"alcotest" {>= "1.7.0" & with-test}
"odoc" {with-doc}
]
conflicts: [
"result" {< "1.5"}
"rresult" {< "0.7.0"}
]
build: [
["dune" "subst"] {dev}
[
"dune"
"build"
"-p"
name
"-j"
jobs
"@install"
"@runtest" {with-test}
"@doc" {with-doc}
]
]
dev-repo: "git+https://github.com/ocurrent/ocaml-dockerfile.git"