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) <noreply@anthropic.com>
This commit is contained in:
Dave Horton
2026-07-11 10:24:32 -04:00
co-authored by Claude Opus 4.8
parent 13c82830d3
commit 8f47038f59
+1 -1
View File
@@ -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 RUN apk --update --no-cache add --virtual .builds-deps build-base python3