Skip to content

Commit 2bd500b

Browse files
authored
Add JDK 21 image container (#646)
1 parent db54c65 commit 2bd500b

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

.github/workflows/publish-docker.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ jobs:
6464
timeout-minutes: 60
6565
strategy:
6666
matrix:
67-
java-version: [ 8, 11, 17 ]
67+
java-version: [ 8, 11, 17, 21 ]
6868
env:
6969
TAG: ${{ github.sha }}
7070
steps:

CHANGES.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ Release Notes.
2020
* Add a netty-http 4.1.x plugin to trace HTTP requests.
2121
* Fix Impala Jdbc URL (including schema without properties) parsing exception.
2222
* Optimize byte-buddy type description performance.
23+
* Add `eclipse-temurin:21-jre` as another base image.
2324

2425
#### Documentation
2526

Makefile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,13 +34,14 @@ dist: build
3434

3535
# Docker build
3636

37-
base.all := alpine java8 java11 java17
37+
base.all := alpine java8 java11 java17 java21
3838
base.each = $(word 1, $@)
3939

4040
base.image.alpine := alpine:3
4141
base.image.java8 := eclipse-temurin:8-jre
4242
base.image.java11 := eclipse-temurin:11-jre
4343
base.image.java17 := eclipse-temurin:17-jre
44+
base.image.java21 := eclipse-temurin:21-jre
4445

4546
docker.%: PLATFORMS =
4647
docker.%: LOAD_OR_PUSH = --load

0 commit comments

Comments
 (0)