Enable LoaderIntegrationTests on aarch64

Closes gh-37654
This commit is contained in:
Phillip Webb
2023-09-28 21:46:48 -07:00
parent 0205b875a0
commit ed4ab667a1
2 changed files with 11 additions and 5 deletions

View File

@@ -0,0 +1,8 @@
FROM ubuntu:jammy-20230624
RUN apt-get update && \
apt-get install -y software-properties-common curl && \
mkdir -p /opt/oraclejdk && \
cd /opt/oraclejdk && \
curl -L https://download.oracle.com/java/17/archive/jdk-17.0.8_linux-aarch64_bin.tar.gz | tar zx --strip-components=1
ENV JAVA_HOME /opt/oraclejdk
ENV PATH $JAVA_HOME/bin:$PATH