From dde1c7d3a105845929b0e972b5e3ffcc27b448ba Mon Sep 17 00:00:00 2001 From: "Bobby R. Bruce" Date: Sat, 26 Oct 2024 21:17:40 -0700 Subject: [PATCH] util-docker: Add RISCV to Ubuntu all-deps Docker platforms (#1716) I have re-implemented building this image to target RISC-V in addition to X86 and ARM. I have found it makes for quite a good cross compilation tool. --- util/dockerfiles/docker-bake.hcl | 1 + 1 file changed, 1 insertion(+) diff --git a/util/dockerfiles/docker-bake.hcl b/util/dockerfiles/docker-bake.hcl index 3517894684..8c26fad042 100644 --- a/util/dockerfiles/docker-bake.hcl +++ b/util/dockerfiles/docker-bake.hcl @@ -190,6 +190,7 @@ group "ubuntu-releases" { target "ubuntu-24-04_all-dependencies" { inherits = ["common"] + platforms = ["linux/amd64", "linux/arm64", "linux/riscv64"] annotations = ["index,manifest:org.opencontainers.image.description=An Ubuntu 24.04 image with all dependencies required for building and running gem5."] context = "ubuntu-24.04_all-dependencies" tags = ["${IMAGE_URI}/ubuntu-24.04_all-dependencies:${TAG}"]