This is an automated email from the ASF dual-hosted git repository.
ruanhang1993 pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/flink-docker.git
The following commit(s) were added to refs/heads/master by this push:
new ecff938 Add Flink 2.2.0 release to .github/workflows/docker_push.yml
(#246)
ecff938 is described below
commit ecff93815f83994141b58ee2c3a2df886104e9bf
Author: Hang Ruan <[email protected]>
AuthorDate: Wed Dec 3 22:38:28 2025 +0800
Add Flink 2.2.0 release to .github/workflows/docker_push.yml (#246)
Co-authored-by: Hang Ruan <[email protected]>
---
.github/workflows/docker_push.yml | 12 +++++++++++-
1 file changed, 11 insertions(+), 1 deletion(-)
diff --git a/.github/workflows/docker_push.yml
b/.github/workflows/docker_push.yml
index 2cf618c..a005097 100644
--- a/.github/workflows/docker_push.yml
+++ b/.github/workflows/docker_push.yml
@@ -63,7 +63,7 @@ jobs:
- flink_version: "2.0"
java_version: "21"
dockerfile: "2.0/scala_2.12-java21-ubuntu/Dockerfile"
- # Flink 2.1.x (Latest)
+ # Flink 2.1.x
- flink_version: "2.1"
java_version: "11"
dockerfile: "2.1/scala_2.12-java11-ubuntu/Dockerfile"
@@ -73,6 +73,16 @@ jobs:
- flink_version: "2.1"
java_version: "21"
dockerfile: "2.1/scala_2.12-java21-ubuntu/Dockerfile"
+ # Flink 2.2.x (Latest)
+ - flink_version: "2.2"
+ java_version: "11"
+ dockerfile: "2.2/scala_2.12-java11-ubuntu/Dockerfile"
+ - flink_version: "2.2"
+ java_version: "17"
+ dockerfile: "2.2/scala_2.12-java17-ubuntu/Dockerfile"
+ - flink_version: "2.2"
+ java_version: "21"
+ dockerfile: "2.2/scala_2.12-java21-ubuntu/Dockerfile"
steps:
- name: Check out the repo