aboutsummaryrefslogtreecommitdiffstats
path: root/Dockerfile
diff options
context:
space:
mode:
authorterminaldweller <thabogre@gmail.com>2022-02-25 09:32:42 +0000
committerterminaldweller <thabogre@gmail.com>2022-02-25 09:32:42 +0000
commit606094496d977fbd9426d9e1e4d61daeddb30150 (patch)
tree5420b74499afe5f5653d4bdc457464c0da6d8b21 /Dockerfile
parentupdates (diff)
downloadmdrtl-606094496d977fbd9426d9e1e4d61daeddb30150.tar.gz
mdrtl-606094496d977fbd9426d9e1e4d61daeddb30150.zip
added a fatjar task
Diffstat (limited to '')
-rw-r--r--Dockerfile4
1 files changed, 4 insertions, 0 deletions
diff --git a/Dockerfile b/Dockerfile
new file mode 100644
index 0000000..03628b8
--- /dev/null
+++ b/Dockerfile
@@ -0,0 +1,4 @@
+FROM openjdk:11-jdk-alpine
+ARG JAR_FILE=./build/libs/src.jar
+COPY ${JAR_FILE} src.jar
+ENTRYPOINT ["java", "-jar", "/src.jar"]