load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test") go_library( name = "containers", srcs = [ "doc.go", "options.go", "push.go", ], importpath = "edge-infra.dev/pkg/tools/hack/containers", visibility = ["//visibility:public"], deps = [ "//pkg/lib/build/bazel", "@com_github_google_go_containerregistry//pkg/name", ], ) go_test( name = "containers_test", srcs = ["push_test.go"], data = glob(["testdata/**"]), embed = [":containers"], deps = ["@com_github_stretchr_testify//assert"], )