初始化
parent
0f3a6827e2
commit
fd3f4932df
1
pom.xml
1
pom.xml
|
@ -9,6 +9,7 @@
|
||||||
<modelVersion>4.0.0</modelVersion>
|
<modelVersion>4.0.0</modelVersion>
|
||||||
|
|
||||||
<artifactId>cloud-gateway</artifactId>
|
<artifactId>cloud-gateway</artifactId>
|
||||||
|
<version>1.0.0</version>
|
||||||
|
|
||||||
<description>
|
<description>
|
||||||
cloud-gateway网关模块
|
cloud-gateway网关模块
|
||||||
|
|
|
@ -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"]
|
Loading…
Reference in New Issue