From 59455daa853e433fd6d516bfca0e79d85de9aab9 Mon Sep 17 00:00:00 2001 From: "Bobby R. Bruce" Date: Tue, 13 Aug 2024 16:12:45 -0700 Subject: [PATCH] util-docker: Fix correct common platform comment Change-Id: Ifc703b47b1e59522ba01f4c2b59a4863779eefb1 --- util/dockerfiles/docker-bake.hcl | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/util/dockerfiles/docker-bake.hcl b/util/dockerfiles/docker-bake.hcl index 23e3bf5e8e..c8b08d1a9d 100644 --- a/util/dockerfiles/docker-bake.hcl +++ b/util/dockerfiles/docker-bake.hcl @@ -37,8 +37,8 @@ variable "TAG" { # Common attributes across all targets. Note: these can be overwritten. target "common" { - # Here we are enabling multi-platform builds. We are compiling to both ARM - # amd X86. + # Here we are enabling multi-platform builds. We are compiling to ARM, X86, + # and RISC-V. platforms = ["linux/amd64", "linux/arm64", "linux/riscv64"] pull = true } @@ -242,4 +242,4 @@ target "devcontainer" { dockerfile = "Dockerfile" context = "devcontainer" tags = ["${IMAGE_URI}/devcontainer:${TAG}"] -} \ No newline at end of file +}