Skip to content
Open
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 assemblies/docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
# limitations under the License.
################################################################################

FROM eclipse-temurin:11-jre
FROM eclipse-temurin:25-jre

# Karaf environment variables
ENV KARAF_INSTALL_PATH /opt
Expand Down
2 changes: 1 addition & 1 deletion assemblies/docker/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ Usage:

If the --image-name flag is not used the built image name will be 'karaf'.
Check the supported build platforms; you can verify with this command: docker buildx ls
The supported platforms (OS/Arch) depend on the build's base image, in this case [eclipse-temurin:11-jre](https://hub.docker.com/_/eclipse-temurin).
The supported platforms (OS/Arch) depend on the build's base image, in this case [eclipse-temurin:25-jre](https://hub.docker.com/_/eclipse-temurin).
```

To create the docker image from local distribution) you can execute the command
Expand Down
2 changes: 1 addition & 1 deletion assemblies/docker/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ Usage:

If the --image-name flag is not used the built image name will be 'karaf'.
Check the supported build platforms; you can verify with this command: docker buildx ls
The supported platforms (OS/Arch) depend on the build's base image, in this case [eclipse-temurin:11-jre](https://hub.docker.com/_/eclipse-temurin).
The supported platforms (OS/Arch) depend on the build's base image, in this case [eclipse-temurin:25-jre](https://hub.docker.com/_/eclipse-temurin).

HERE
exit 1
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ public void execute() throws MojoExecutionException, MojoFailureException {
File dockerFile = new File(destDir, "Dockerfile");
try {
StringBuilder buffer = new StringBuilder();
buffer.append("FROM eclipse-temurin:11-jre").append("\n");
buffer.append("FROM eclipse-temurin:25-jre").append("\n");
buffer.append("ENV KARAF_INSTALL_PATH /opt").append("\n");
buffer.append("ENV KARAF_HOME $KARAF_INSTALL_PATH/apache-karaf").append("\n");
buffer.append("ENV KARAF_EXEC exec").append("\n");
Expand Down
Loading