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, then xbps-remove -O should be run.
FreeBSD-style packages: When pkg install... is used, then pkg clean -y should be run.
NetBSD-style packages: When pkgin [options...] install is used, then pkgin -y clean should run.
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!)
xbps-install
is used, thenxbps-remove -O
should be run.pkg install
... is used, thenpkg clean -y
should be run.pkgin [options...] install
is used, thenpkgin -y clean
should run.