From df808b8396ffe1c712062aef29ea61e6f8448c3b Mon Sep 17 00:00:00 2001 From: Ryan Cavicchioni Date: Sat, 28 Jun 2025 16:33:58 -0500 Subject: [PATCH] piss --- docker-bake.hcl | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/docker-bake.hcl b/docker-bake.hcl index 9a25544..903b9de 100644 --- a/docker-bake.hcl +++ b/docker-bake.hcl @@ -9,21 +9,17 @@ target "_common" { args = { RUBY_VERSION = "3.4.4" } + platforms = [ + "linux/amd64", + ] } target "bookworm" { dockerfile = "./dockerfiles/bookworm.Dockerfile" inherits = [ "_common", "docker-metadata-action" ] - platforms = [ - "linux/amd64", - "linux/arm64", - ] } target "alpine" { dockerfile = "./dockerfiles/alpine.Dockerfile" inherits = [ "_common", "docker-metadata-action-alpine" ] - platforms = [ - "linux/amd64", - ] }