-
Notifications
You must be signed in to change notification settings - Fork 213
/
Copy pathhadolint.sh
executable file
·63 lines (57 loc) · 2.05 KB
/
hadolint.sh
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
#!/bin/bash
#
# Copyright 2022 Intel Corporation
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
set -o pipefail
files_to_scan=(
"./release_files/Dockerfile.ubuntu"
"./release_files/Dockerfile.redhat"
"./Dockerfile.ubuntu"
"./Dockerfile.redhat"
)
files_no_proxy_setting=(
"./release_files/Dockerfile.ubuntu"
"./release_files/Dockerfile.redhat"
)
# install hadolint if missing
~/bin/hadolint --version | grep 2.12 ; if [ $? != 0 ]; then \
mkdir ~/bin && \
curl -L https://github.com/hadolint/hadolint/releases/download/v2.12.0/hadolint-Linux-x86_64 -o ~/bin/hadolint && \
chmod 755 ~/bin/hadolint; \
fi
has_issues=0
while IFS= read -r -d '' dockerfile
do
if printf '%s\0' "${files_to_scan[@]}" | grep -Fxqz -- $dockerfile; then
echo "Scanning $dockerfile with sha256: $(sha256sum $dockerfile | head -n1 | cut -d " " -f1)"
~/bin/hadolint "$dockerfile" \
--ignore DL3006 \
--ignore DL3008 \
--ignore DL3013 \
--ignore DL3016 \
--ignore DL3018 \
--ignore DL3028 \
--ignore DL3033 \
--ignore DL4001 \
|| has_issues=1
else
echo "Skipping $dockerfile"
fi
if printf '%s\0' "${files_no_proxy_setting[@]}" | grep -Fxqz -- $dockerfile; then
echo "Searching for proxy in $dockerfile"
grep -in proxy "$dockerfile" && has_issues=1 || true
fi
done < <(find ./ \( -name 'Dockerfile*' \) -print0)
exit "$has_issues"