From 8f47038f59db844564f4cad655949d243c58d069 Mon Sep 17 00:00:00 2001 From: Dave Horton Date: Sat, 11 Jul 2026 10:24:32 -0400 Subject: [PATCH] fix(docker): drop hardcoded --platform=linux/amd64 for arm64 builds The base image was pinned to linux/amd64, so the arm64 build leg pulled the amd64 image and failed with 'exec format error'. Remove the pin so each platform builds on its native base (jambonz v11 arm64 support). Co-Authored-By: Claude Opus 4.8 (1M context) --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index b2d6356..d13c54e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM --platform=linux/amd64 node:24-alpine AS base +FROM node:24-alpine AS base RUN apk --update --no-cache add --virtual .builds-deps build-base python3