Open gounthar opened 2 years ago
That will probably be this line here: https://github.com/adoptium/temurin-build/blob/57385678aecff3ca355dce930d4779d9aed81791/docker/dockerfile-generator.sh#L303
Would you be interested in submitting a PR to do the detection? The API architectures are mostly the same as uname
other than x64 (x64
instead of x86-64
) and arm32 (arm
instead of armv7l
)
Yes, sure, let me try that.
Any updates on this? When do you plan to support aarch64?
We are waiting for Metabase ARM image which is blocked by this issue.
@bbednarek We have Aarch 64 binaries available through adoptium.net - is that what you're after? This ticket is about allowing folks to build their own binaries at home for themselves.
@karianna Thank for quick reply. I am not talking about binaries. I'm asking about linux/arm64
arch of eclipse-temurin:11-jre-alpine
Docker image
@bbednarek As @karianna says this issue is NOT related to the availability of Temurin on Alpine/aarch64. The issue we have covering Alpine on aarch64 is https://github.com/adoptium/containers/issues/158
What are you trying to do? I'm trying to build with the following command
./makejdk-any-platform.sh --docker --clean-docker-build jdk11u
on a Oracle Free Tier Ubuntu 20.04.2aarch64
machine running kernel5.13.0-1018-oracle
with docker20.10.7, build 20.10.7-0ubuntu5~20.04.2
.Expected behaviour: A built jdk.
Observed behaviour:
I guess the process is linked somehow to
x86_64
binariesAny other comments: Would it be possible to detect the arch and dynamize the previous
wget
command?Thanks.