Skip to content

Revert "Change base docker image used for testing from java11 to java… #23

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/validate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
- name: Get Docker Images
shell: bash
run: |
docker pull gcr.io/distroless/java17-debian11
docker pull gcr.io/distroless/java:11
uname -a

- name: Set up JDK
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ COHERENCE_WKA2 ?= server1
CLUSTER_PORT ?= 7574
# Profiles to include for building
PROFILES ?=
COHERENCE_BASE_IMAGE ?= gcr.io/distroless/java17-debian11
COHERENCE_BASE_IMAGE ?= gcr.io/distroless/java:11

# ----------------------------------------------------------------------------------------------------------------------
# Set the location of various build tools
Expand Down
2 changes: 1 addition & 1 deletion tests/java/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
<coherence.test.groupId>com.oracle.coherence.ce</coherence.test.groupId>
<coherence.test.version>${coherence.version}</coherence.test.version>

<coherence.test.base.image>gcr.io/distroless/java17-debian11</coherence.test.base.image>
<coherence.test.base.image>gcr.io/distroless/java:11</coherence.test.base.image>

<!-- library dependency versions -->
<version.lib.asciidoctor.diagram>2.2.1</version.lib.asciidoctor.diagram>
Expand Down