docker: partial dockerfile, but not yet working

This commit is contained in:
Yannik Bretschneider 2021-06-05 00:54:57 +02:00
parent fc37aca05a
commit 0be4e19217
1 changed files with 4 additions and 0 deletions

4
Dockerfile Normal file
View File

@ -0,0 +1,4 @@
FROM adoptopenjdk:15-jre-hotspot
RUN mkdir logs
COPY Server/build/libs/Server.jar Server.jar
CMD ["java", "-jar", "Server.jar", "-v"]