Erweiterungen

This commit is contained in:
2025-08-14 08:41:20 +02:00
parent 470060b4b1
commit 3eb6343084
6 changed files with 10185 additions and 0 deletions

4
Dockerfile Normal file
View File

@@ -0,0 +1,4 @@
FROM eclipse-temurin:21-jre
COPY target/*.jar app.jar
EXPOSE 8080
ENTRYPOINT ["java", "-jar", "/app.jar"]