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 docker/server.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Build the Spring Boot application
FROM eclipse-temurin:25.0.1_8-jdk AS builder
FROM eclipse-temurin:25.0.3_9-jdk AS builder
WORKDIR /app

COPY . .
Expand All @@ -10,7 +10,7 @@ RUN ./gradlew --no-daemon bootJar -x test \
&& cp "${JAR_FILE}" /app/application.jar

# Run the packaged jar with a lightweight JRE
FROM eclipse-temurin:25.0.1_8-jre
FROM eclipse-temurin:25.0.3_9-jre
WORKDIR /app

# Install curl for health checks
Expand Down
Loading