dockerfile_lint
dockerfile_lint copied to clipboard
Identify more package systems for cleaning
As an engineer, I want dockerfile_lint to recognize more kinds of package managers and report findings when they are not cleaned, so that I can lint even more kinds of images. (By the way, there are such things as BSD images!)
- Void Linux packages: When
xbps-install
is used, thenxbps-remove -O
should be run. - FreeBSD-style packages: When
pkg install
... is used, thenpkg clean -y
should be run. - NetBSD-style packages: When
pkgin [options...] install
is used, thenpkgin -y clean
should run.