From 466e99594e14eb195fcb2269953c23c702319a24 Mon Sep 17 00:00:00 2001 From: Geoff Bourne Date: Sat, 1 Jan 2022 11:45:05 -0600 Subject: [PATCH] Added java17-openj9 variant #1209 --- .github/workflows/build-multiarch.yml | 3 ++- Dockerfile | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build-multiarch.yml b/.github/workflows/build-multiarch.yml index 4e5d35f8..7f7ea7a1 100644 --- a/.github/workflows/build-multiarch.yml +++ b/.github/workflows/build-multiarch.yml @@ -81,7 +81,8 @@ jobs: uses: docker/build-push-action@v2.7.0 with: context: . - platforms: linux/amd64,linux/arm/v7,linux/arm64 + # No arm64/armv7 support: https://hub.docker.com/_/ibm-semeru-runtimes?tab=tags&page=1&name=open-17-jdk + platforms: linux/amd64 push: ${{ github.event_name != 'pull_request' }} tags: ${{ steps.meta.outputs.tags }} # ensure latest base image is used diff --git a/Dockerfile b/Dockerfile index 7beb2c13..d9d2f774 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM eclipse-temurin:17-jdk +FROM ibm-semeru-runtimes:open-17-jdk LABEL org.opencontainers.image.authors="Geoff Bourne "