initial commit
commit
183ae76be1
|
@ -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"]
|
|
@ -0,0 +1,3 @@
|
|||
#!/bin/sh
|
||||
|
||||
java -jar /opt/launch4j/launch4j.jar $PLUGIN_FILE
|
Loading…
Reference in New Issue