初始化

master
面包骑士 2024-07-27 10:49:59 +08:00
parent 0f3a6827e2
commit fd3f4932df
2 changed files with 8 additions and 0 deletions

View File

@ -9,6 +9,7 @@
<modelVersion>4.0.0</modelVersion>
<artifactId>cloud-gateway</artifactId>
<version>1.0.0</version>
<description>
cloud-gateway网关模块

View File

@ -0,0 +1,7 @@
FROM openjdk:17-jre-slim
WORKDIR /home/images/deploy/gateway
COPY cloud-gateway.jar /home/images/deploy/gateway
ENTRYPOINT ["java","-jar","/home/images/deploy/gateway/cloud-gateway.jar"]