project: ignore hadolint rules deprecated upstream

- see 16099603b3
This commit is contained in:
Christian Nicolai 2021-08-26 08:43:32 +02:00
parent 882fcbe13b
commit 9768424628
1 changed files with 1 additions and 1 deletions

View File

@ -26,7 +26,7 @@ hadolint_version = 'v2.6.0'
desc 'Run hadolint for Dockerfile linting'
task :hadolint do
sh "docker run --rm -i hadolint/hadolint:#{hadolint_version} hadolint --ignore DL3018 - < docker/Dockerfile"
sh "docker run --rm -i hadolint/hadolint:#{hadolint_version} hadolint --ignore DL3017 --ignore DL3018 - < docker/Dockerfile"
end
task default: [:rubocop, :spec, 'bundle:audit', :solargraph]