Skip to content

Commit 7f91ea1

Browse files
committed
Enable ARM64 support across all Docker build targets
Signed-off-by: Davanum Srinivas <[email protected]>
1 parent 49c561b commit 7f91ea1

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

.github/actions/build-container/action.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,6 @@ runs:
5959
SAFE_REF_NAME: ${{ inputs.safe_ref_name }}
6060
NVCR_CONTAINER_REPO: ${{ inputs.nvcr_container_repo }}
6161
NGC_ORG: ${{ inputs.container_org }}
62-
PLATFORMS: 'linux/amd64' # Only amd64 for faster PR validation
6362
DOCKER_BUILDKIT: 1
6463
BUILDX_CACHE_FROM: type=local,src=/tmp/.buildx-cache
6564
BUILDX_CACHE_TO: type=local,dest=/tmp/.buildx-cache-new,mode=max

common.mk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,7 @@ docker-build: setup-buildx
191191
docker-build-local: setup-buildx
192192
@echo "Building Docker image for $(MODULE_NAME) (local, no remote cache)..."
193193
cd $(REPO_ROOT) && docker buildx build \
194-
--platform linux/amd64 \
194+
--platform $(PLATFORMS) \
195195
--network=host \
196196
$(DOCKER_EXTRA_ARGS) \
197197
--load \

0 commit comments

Comments
 (0)