docker 打包&生产配置

This commit is contained in:
limqhz
2022-05-14 02:56:22 +08:00
parent a5fa8ba4a2
commit 12ff775d36
4 changed files with 27 additions and 3 deletions

8
Dockerfile Normal file
View File

@@ -0,0 +1,8 @@
FROM java:8
ADD target/quinn-0.0.1-SNAPSHOT.jar /home/monitor-3.1.5.jar
ADD run.sh /home
EXPOSE 8088
ENTRYPOINT [ "sh", "/home/run.sh" ]