ci: implements jenkins deploy

This commit is contained in:
2026-02-21 10:44:49 +01:00
parent 5a26b299f2
commit 4e72e6da77
3 changed files with 108 additions and 1 deletions

View File

@@ -12,5 +12,5 @@ RUN mvn clean package -DskipTests
FROM openjdk:21-jdk
WORKDIR /app
COPY --from=build /app/bootstrap/target/*.jar app.jar
EXPOSE 8080
EXPOSE 80
ENTRYPOINT ["java", "-agentlib:jdwp=transport=dt_socket,server=y,suspend=n,address=*:5005", "-Xmx512m", "-Xms256m", "-jar", "app.jar"]