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 Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Use Eclipse Temurin's JRE Alpine as base image (smaller than openjdk:slim)
FROM eclipse-temurin:17-jre-alpine
FROM eclipse-temurin:25-jre-alpine

# Add curl for healthchecks and bash for scripts
RUN apk add --no-cache curl bash
Expand Down
4 changes: 2 additions & 2 deletions Dockerfile.example
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM eclipse-temurin:17-jdk-alpine as build
FROM eclipse-temurin:25-jdk-alpine as build
WORKDIR /workspace/app

# Copy maven executable to the image
Expand All @@ -19,7 +19,7 @@ RUN ./mvnw package -DskipTests
RUN mkdir -p target/dependency && (cd target/dependency; jar -xf ../*.jar)

# Runtime stage
FROM eclipse-temurin:17-jre-alpine
FROM eclipse-temurin:25-jre-alpine
VOLUME /tmp
VOLUME /logs

Expand Down
Loading