init project

This commit is contained in:
limqhz
2020-10-20 21:39:58 +08:00
parent 6bbdfcf60f
commit f7b0d48c28
23 changed files with 1708 additions and 0 deletions

8
docker/Dockerfile Normal file
View File

@@ -0,0 +1,8 @@
FROM java:8
ADD ../target/boot/bootstrap-1.0.0-executable.jar /home
ADD run.sh /home
EXPOSE 8088
ENTRYPOINT [ "sh", "/home/run.sh" ]