File tree Expand file tree Collapse file tree 2 files changed +6
-1
lines changed
Expand file tree Collapse file tree 2 files changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -44,6 +44,11 @@ Release names follow the **historic football clubs** naming convention (A–Z):
4444
4545### Changed
4646
47+ - Switch runtime base image from ` eclipse-temurin:25-jdk-alpine ` to
48+ ` eclipse-temurin:25-jre-alpine ` to reduce image size by dropping compiler
49+ toolchain (` javac ` , ` jshell ` , debug utilities) while retaining the full JVM
50+ (#307 )
51+
4752### Fixed
4853
4954### Removed
Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ RUN mvn clean package -DskipTests
1919# Stage 2: Runtime
2020# This stage creates the final, minimal image to run the application.
2121# ------------------------------------------------------------------------------
22- FROM eclipse-temurin:25-jdk -alpine AS runtime
22+ FROM eclipse-temurin:25-jre -alpine AS runtime
2323
2424WORKDIR /app
2525
You can’t perform that action at this time.
0 commit comments