Add files via upload

This commit is contained in:
Anthony Stirling
2023-01-27 18:23:40 +00:00
committed by GitHub
parent d70aec5daa
commit b078905889
32 changed files with 1575 additions and 0 deletions

5
Dockerfile Normal file
View File

@@ -0,0 +1,5 @@
FROM openjdk:17-jdk-slim
COPY build/libs/*.jar app.jar
EXPOSE 8080
ENV LOG_LEVEL=INFO
ENTRYPOINT ["java","-jar","/app.jar","-Dlogging.level=${LOG_LEVEL}"]