Skip to content

Commit

Permalink
Add ignore for using latest images
Browse files Browse the repository at this point in the history
  • Loading branch information
asmorodskyi committed Feb 8, 2024
1 parent 2eaa891 commit c4a5903
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .hadolint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@ failure-threshold: warning
format: tty

# Ignored rules:
# DL3013 - Specify package version because we don't want to do that
# DL3037 - Specify package version because we don't want to do that
# DL3013 - Pin versions in pip.
# DL3007 - Using latest is prone to errors if the image will ever update. Pin the version explicitly to a release tag.
# DL3037 - Specify version with zypper install -y <package>[=]<version>
# DL4006 - Use SHELL option `-o pipefail` because that's non OCI container option
ignored: [DL3013, DL3037, DL4006]
ignored: [DL3013, DL3007, DL3037, DL4006]

0 comments on commit c4a5903

Please sign in to comment.