From 93149522cb30911ed2d7521c26f307da45bf9786 Mon Sep 17 00:00:00 2001 From: Nick Dumas Date: Wed, 2 Aug 2023 21:19:59 -0400 Subject: [PATCH] attempting to reference distroless image as a repo instead of a target --- cmd/demo/BUILD.bazel | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/demo/BUILD.bazel b/cmd/demo/BUILD.bazel index b949e95..245bdaf 100644 --- a/cmd/demo/BUILD.bazel +++ b/cmd/demo/BUILD.bazel @@ -28,7 +28,7 @@ load("@rules_oci//oci:defs.bzl", "oci_image") oci_image( name = "image", - base = "//:distroless_base", + base = "@distroless_base", entrypoint = ["/demo"], tars = [":tar"], )