Dependency update, Docker buildfile, Readme, LICENSE

+ Added Docker build file
+ added Readme.md
+ added LICENSE (GPLv3)
* replaced dependency slf4j-api with logback
+ added dependency jetbrains-annotations
+ added dependency okhttp3
- removed build plugin central-publishing
+ added logback config files
This commit is contained in:
2024-05-09 19:50:24 +02:00
parent efa92243f1
commit 070dae5aeb
6 changed files with 907 additions and 14 deletions

9
Dockerfile Normal file
View File

@@ -0,0 +1,9 @@
FROM eclipse-temurin:21-jre-alpine
LABEL authors="B00tLoad_"
RUN mkdir -p /opt/app
RUN mkdir -p /data/b00tload-tools/snowflake
COPY target/SnowflakeService-jar-with-dependencies.jar /opt/app
CMD ["java", "-jar", "/opt/app/SnowflakeService-jar-with-dependencies.jar", "--docker"]