Skip to content

Commit

Permalink
Update Hono Builder Docker image
Browse files Browse the repository at this point in the history
Updated Mandrel version to match Quarkus 3.8
  • Loading branch information
sophokles73 committed May 28, 2024
1 parent ba0b3f8 commit e79d98f
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 10 deletions.
2 changes: 1 addition & 1 deletion jenkins/Hono-Deploy-Eclipse-Pipeline-Declarative.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ pipeline {
- name: "HOME"
value: "/home/jenkins"
- name: "hono-builder"
image: "eclipse/hono-builder:2.5.0"
image: "eclipse/hono-builder:2.6.0"
imagePullPolicy: "Always"
tty: true
command:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ pipeline {
- name: "HOME"
value: "/home/jenkins"
- name: "hono-builder"
image: "eclipse/hono-builder:2.5.0"
image: "eclipse/hono-builder:2.6.0"
imagePullPolicy: "Always"
tty: true
command:
Expand Down
2 changes: 1 addition & 1 deletion jenkins/Hono-Nightly-Pipeline-Declarative.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ pipeline {
- name: "HOME"
value: "/home/jenkins"
- name: "hono-builder"
image: "eclipse/hono-builder:2.5.0"
image: "eclipse/hono-builder:2.6.0"
imagePullPolicy: "Always"
tty: true
command:
Expand Down
2 changes: 1 addition & 1 deletion jenkins/Hono-Release-Pipeline.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ pipeline {
- name: "HOME"
value: "/home/jenkins"
- name: "hono-builder"
image: "eclipse/hono-builder:2.5.0"
image: "eclipse/hono-builder:2.6.0"
imagePullPolicy: "Always"
tty: true
command:
Expand Down
2 changes: 1 addition & 1 deletion jenkins/Hono-Sonar-Pipeline.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ pipeline {
- name: "HOME"
value: "/home/jenkins"
- name: "hono-builder"
image: "eclipse/hono-builder:2.5.0"
image: "eclipse/hono-builder:2.6.0"
imagePullPolicy: "Always"
tty: true
command:
Expand Down
5 changes: 2 additions & 3 deletions jenkins/builder/HonoBuilder.dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,8 @@

FROM debian:bullseye-slim

ARG MANDREL_VERSION=23.0.2.1-Final
# either java11 or java17
ARG JDK_VERSION=java17
ARG MANDREL_VERSION=23.1.3.1-Final
ARG JDK_VERSION=java21
ARG MVN_VERSION=3.8.8

ENV GRAALVM_HOME=/graalvm
Expand Down
4 changes: 2 additions & 2 deletions jenkins/builder/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,13 @@ The image can be built using

```sh
# in folder $HONO_HOME/jenkins/builder
docker build -t eclipse/hono-builder:2.5.0 -f HonoBuilder.dockerfile .
docker build -t eclipse/hono-builder:2.6.0 -f HonoBuilder.dockerfile .
```

The resulting image needs to be pushed (manually) to Docker Hub before running any of the build pipelines
on the Eclipse Jenkins build infrastructure:

```sh
docker push eclipse/hono-builder:2.5.0
docker push eclipse/hono-builder:2.6.0
```

0 comments on commit e79d98f

Please sign in to comment.