This repository has been archived on 2026-05-07. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
SnowflakeService/Dockerfile
Alix von Schirp @ BootMedia Media Production 070dae5aeb 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
2024-05-09 19:50:24 +02:00

9 lines
281 B
Docker

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"]