From 477e13afd0499a7abb4a9c68a71aabea76ca7ae5 Mon Sep 17 00:00:00 2001 From: Foke Singh Date: Mon, 24 Apr 2023 10:04:50 +0000 Subject: [PATCH] Add missing zig_cc_binary import to the simple layer example in the documentation. --- docs/howtos/dockerize_models.md | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/howtos/dockerize_models.md b/docs/howtos/dockerize_models.md index 318cccd..05465e9 100644 --- a/docs/howtos/dockerize_models.md +++ b/docs/howtos/dockerize_models.md @@ -41,6 +41,7 @@ use their rules to define our 5 additional targets: load("@aspect_bazel_lib//lib:tar.bzl", "mtree_spec", "tar") load("@aspect_bazel_lib//lib:transitions.bzl", "platform_transition_filegroup") load("@rules_oci//oci:defs.bzl", "oci_image", "oci_load", "oci_push") +load("@zml//bazel:zig.bzl", "zig_cc_binary") zig_cc_binary( name = "simple_layer",