Create an initial Dockerfile

This commit is contained in:
Manuel Friedli 2020-10-12 12:28:47 +02:00
parent 1a8e3d247a
commit 7450bfd1af
Signed by: manuel
GPG key ID: 41D08ABA75634DA1

5
src/docker/Dockerfile Normal file
View file

@ -0,0 +1,5 @@
FROM openjdk:11
COPY target/labyrinth-server-0.0.1-SNAPSHOT-jar-with-dependencies.jar /app/app.jar
CMD java -Dfritteli.labyrinth.server.port=80 -jar /app/app.jar