mirror of
https://github.com/project-zot/zot.git
synced 2025-02-17 23:45:36 -05:00
If image vulnerability scan does not support any media type, considering those images as an infected image and now this images will not be shown in fixed images list. Fixes issue #130
21 lines
741 B
Text
21 lines
741 B
Text
load("@io_bazel_rules_go//go:def.bzl", "go_library")
|
|
|
|
go_library(
|
|
name = "go_default_library",
|
|
srcs = [
|
|
"generated.go",
|
|
"models_gen.go",
|
|
"resolver.go",
|
|
],
|
|
importpath = "github.com/anuvu/zot/pkg/extensions/search",
|
|
visibility = ["//visibility:public"],
|
|
deps = [
|
|
"//pkg/extensions/search/cve:go_default_library",
|
|
"//pkg/log:go_default_library",
|
|
"//pkg/storage:go_default_library",
|
|
"@com_github_99designs_gqlgen//graphql:go_default_library",
|
|
"@com_github_99designs_gqlgen//graphql/introspection:go_default_library",
|
|
"@com_github_vektah_gqlparser_v2//:go_default_library",
|
|
"@com_github_vektah_gqlparser_v2//ast:go_default_library",
|
|
],
|
|
)
|