forked from hadolint/hadolint
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.yaml
67 lines (67 loc) · 1.5 KB
/
package.yaml
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
62
63
64
65
66
67
name: hadolint
version: '1.15.0'
synopsis: Dockerfile Linter JavaScript API
description: A smarter Dockerfile linter that helps you build best practice Docker images.
category: Development
author: Lukas Martinelli
maintainer: [email protected]
copyright: Lukas Martinelli
license: GPL-3
homepage: https://github.com/hadolint/hadolint
git: [email protected]:hadolint/hadolint.git
extra-source-files: README.md
ghc-options:
- -Wall
- -Wcompat
- -Wincomplete-record-updates
- -Wincomplete-uni-patterns
- -Wredundant-constraints
- -optP-Wno-nonportable-include-path
dependencies:
- base >=4.8 && <5
- megaparsec >=7.0
- language-docker >=8.0.0 && < 9
library:
source-dirs: src
dependencies:
- &bytestring bytestring >=0.10
- &split split >=0.2
- &ShellCheck ShellCheck >=0.5.0
- aeson
- text
- bytestring
- containers
- void
- mtl
- yaml
- filepath
- directory >= 1.3.0
executables:
hadolint:
main: Main.hs
source-dirs: app
dependencies:
- hadolint
- optparse-applicative >= 0.14.0
- gitrev >=1.3.1
- text
- containers
when:
# OS X does not support static build https://developer.apple.com/library/content/qa/qa1118
- condition: '!(os(osx))'
ld-options:
- -static
- -pthread
tests:
hadolint-unit-tests:
main: Spec.hs
source-dirs: test
dependencies:
- *bytestring
- *split
- *ShellCheck
- aeson
- text
- HUnit >=1.2
- hspec
- hadolint