initial commit
This commit is contained in:
commit
183ae76be1
7
Dockerfile
Normal file
7
Dockerfile
Normal file
@ -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"]
|
3
entrypoint.sh
Executable file
3
entrypoint.sh
Executable file
@ -0,0 +1,3 @@
|
||||
#!/bin/sh
|
||||
|
||||
java -jar /opt/launch4j/launch4j.jar $PLUGIN_FILE
|
Loading…
Reference in New Issue
Block a user