初始化

master
面包骑士 2024-07-28 09:23:26 +08:00
parent cc24037448
commit 69482fc26c
1 changed files with 12 additions and 0 deletions

12
DockerFile 100644
View File

@ -0,0 +1,12 @@
# |- home
# |- app.jar
# |- logs
FROM openjdk:17-jdk
WORKDIR /home
VOLUME ["/home/logs/cloud-gateway"]
COPY ./target/cloud-gateway.jar /home/app.jar
ENTRYPOINT ["java","-jar","/home/app.jar"]