Skip to content

Commit

Permalink
Add JDK 21 image container (#646)
Browse files Browse the repository at this point in the history
  • Loading branch information
wu-sheng authored Nov 8, 2023
1 parent db54c65 commit 2bd500b
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/publish-docker.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ jobs:
timeout-minutes: 60
strategy:
matrix:
java-version: [ 8, 11, 17 ]
java-version: [ 8, 11, 17, 21 ]
env:
TAG: ${{ github.sha }}
steps:
Expand Down
1 change: 1 addition & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ Release Notes.
* Add a netty-http 4.1.x plugin to trace HTTP requests.
* Fix Impala Jdbc URL (including schema without properties) parsing exception.
* Optimize byte-buddy type description performance.
* Add `eclipse-temurin:21-jre` as another base image.

#### Documentation

Expand Down
3 changes: 2 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -34,13 +34,14 @@ dist: build

# Docker build

base.all := alpine java8 java11 java17
base.all := alpine java8 java11 java17 java21
base.each = $(word 1, $@)

base.image.alpine := alpine:3
base.image.java8 := eclipse-temurin:8-jre
base.image.java11 := eclipse-temurin:11-jre
base.image.java17 := eclipse-temurin:17-jre
base.image.java21 := eclipse-temurin:21-jre

docker.%: PLATFORMS =
docker.%: LOAD_OR_PUSH = --load
Expand Down

0 comments on commit 2bd500b

Please sign in to comment.