-
Notifications
You must be signed in to change notification settings - Fork 1
/
.hadolint.yaml
25 lines (20 loc) · 1.18 KB
/
.hadolint.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
ignored:
# Ubuntu
- DL3008 # https://github.com/hadolint/hadolint/wiki/DL3008 (Pin versions in apt get install)
- DL3009 # https://github.com/hadolint/hadolint/wiki/DL3009 (Delete the apt-get lists after installing something)
- DL3015 # https://github.com/hadolint/hadolint/wiki/DL3015 (Avoid additional packages by specifying --no-install-recommends)
# Python
- DL3013 # https://github.com/hadolint/hadolint/wiki/DL3013 (Pin versions in pip)
# Alpine
- DL3017 # https://github.com/hadolint/hadolint/wiki/DL3017 (Do not use apk upgrade)
- DL3018 # https://github.com/hadolint/hadolint/wiki/DL3018 (Pin versions in apk add)
# Amazon Linux
- DL3033 # https://github.com/hadolint/hadolint/wiki/DL3033 (Pin versions in yum install)
- DL3041 # https://github.com/hadolint/hadolint/wiki/DL3033 (Pin versions in dnf install)
# Dockerfile
- DL3047 # https://github.com/hadolint/hadolint/wiki/DL3047 (wget --progress)
- DL3059 # https://github.com/hadolint/hadolint/wiki/DL3059 (Multiple consecutive RUN instructions)
- SC1091 # https://www.shellcheck.net/wiki/SC1091 (Shellcheck unable to follow dynamic paths)
trustedRegistries:
- docker.io # Official upstream
- ghcr.io