Fix semgrep and add Dockerfile

This commit is contained in:
2026-02-16 15:08:26 +01:00
parent 675ea3bed3
commit 2477e25af0
2 changed files with 9 additions and 1 deletions

View File

@@ -1,2 +1,2 @@
rules:
- p/java
- p/java

8
Dockerfile Normal file
View File

@@ -0,0 +1,8 @@
FROM eclipse-temurin:17-jre
WORKDIR /app
COPY build/libs/*.jar app.jar
EXPOSE 8080
ENTRYPOINT ["java","-jar","app.jar"]