diff --git a/grype/matcher/controller.go b/grype/matcher/controller.go index da5f5ba1..3d3c35f1 100644 --- a/grype/matcher/controller.go +++ b/grype/matcher/controller.go @@ -3,6 +3,7 @@ package matcher import ( "github.com/anchore/grype/grype/event" "github.com/anchore/grype/grype/match" + "github.com/anchore/grype/grype/matcher/apk" "github.com/anchore/grype/grype/matcher/bundler" "github.com/anchore/grype/grype/matcher/dpkg" "github.com/anchore/grype/grype/matcher/java" @@ -44,6 +45,7 @@ func newController() controller { ctrlr.add(&rpmdb.Matcher{}) ctrlr.add(&java.Matcher{}) ctrlr.add(&javascript.Matcher{}) + ctrlr.add(&apk.Matcher{}) return ctrlr }