add apk to controller

Signed-off-by: Alfredo Deza <adeza@anchore.com>
This commit is contained in:
Alfredo Deza 2020-08-04 11:52:04 -04:00
parent e0db0c1145
commit cff46b8443

View file

@ -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
}