Skip to content
Open
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
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@

# 1st stage, build the app
FROM container-registry.oracle.com/java/openjdk:25 AS build
FROM container-registry.oracle.com/java/openjdk:26 AS build

# Install maven
WORKDIR /usr/share
Expand All @@ -25,7 +25,7 @@ ADD src src
RUN mvn package -DskipTests

# 2nd stage, build the runtime image
FROM container-registry.oracle.com/java/openjdk:25
FROM container-registry.oracle.com/java/openjdk:26
WORKDIR /helidon

# Copy the binary built in the 1st stage
Expand Down