commit 183ae76be126a7b998d3696b5b6cf73946d0445a Author: Gero Müller Date: Mon May 1 16:02:40 2023 +0200 initial commit diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..d80323a --- /dev/null +++ b/Dockerfile @@ -0,0 +1,7 @@ +FROM eclipse-temurin:17 + +RUN curl -L https://downloads.sourceforge.net/project/launch4j/launch4j-3/3.50/launch4j-3.50-linux-x64.tgz | tar xz -C /opt + +ADD entrypoint.sh /usr/local/sbin/entrypoint + +ENTRYPOINT ["/usr/local/sbin/entrypoint"] diff --git a/entrypoint.sh b/entrypoint.sh new file mode 100755 index 0000000..dd429b5 --- /dev/null +++ b/entrypoint.sh @@ -0,0 +1,3 @@ +#!/bin/sh + +java -jar /opt/launch4j/launch4j.jar $PLUGIN_FILE