Skip to content
Draft
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: 0 additions & 2 deletions .github/copilot-instructions.md

This file was deleted.

8 changes: 4 additions & 4 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Use Maven with OpenJDK 8 for building
FROM maven:3.9.6-eclipse-temurin-8 AS build
# Use Maven with OpenJDK 21 for building
FROM maven:3.9.9-eclipse-temurin-21 AS build

WORKDIR /app

Expand All @@ -13,8 +13,8 @@ COPY src ./src
# Build the application
RUN mvn clean package -DskipTests

# Use OpenJDK 8 runtime for the final image
FROM eclipse-temurin:8-jre
# Use OpenJDK 21 runtime for the final image
FROM eclipse-temurin:21-jre

WORKDIR /app

Expand Down
Loading
Loading