Skip to content

Commit

Permalink
(fix#5298) Platform choice for aarch64 is incorrect
Browse files Browse the repository at this point in the history
  • Loading branch information
tdiesler authored and squakez committed Apr 12, 2024
1 parent efaa165 commit 091c88b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion script/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ BASE_IMAGE := eclipse-temurin:17
LOCAL_REPOSITORY := /etc/maven/m2
IMAGE_NAME ?= docker.io/apache/camel-k
# Test for arm64, fall back to amd64
IMAGE_ARCH ?= $(if $(filter arm64,$(shell uname -m)),arm64,amd64)
IMAGE_ARCH ?= $(if $(filter arm64 aarch64,$(shell uname -m)),arm64,amd64)
#
# Situations when user wants to override
# the image name and version
Expand Down

0 comments on commit 091c88b

Please sign in to comment.