Skip to content

Commit 638c598

Browse files
committed
Fix
1 parent 12c599a commit 638c598

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

Dockerfile

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
# Stage 1: Kotlin Build
2-
FROM openjdk:21 AS kotlin-build
1+
FROM openjdk:21-slim AS kotlin-build
32

43
# Install necessary tools and Gradle
54
RUN apt-get update && \
@@ -37,7 +36,7 @@ COPY . /app
3736
RUN ./gradlew build
3837

3938
# Final Stage: Combine Artifacts
40-
FROM ubuntu:22.04 AS final
39+
FROM ubuntu:24.04 AS final
4140

4241
# Copy Kotlin build artifacts
4342
COPY --from=kotlin-build /app /final/kotlin

0 commit comments

Comments
 (0)