better secret handling docker api upgrade

This commit is contained in:
2025-01-07 23:40:00 +01:00
parent 53a262ddb9
commit 5546b0ba3b
14 changed files with 168 additions and 38 deletions

7
dockerfile Normal file
View File

@@ -0,0 +1,7 @@
FROM openjdk:17-jdk-slim
COPY ./target/*.jar app.jar
EXPOSE 8080
ENTRYPOINT ["java", "-jar", "app.jar"]