Compare commits

..

No commits in common. "3d1d290f88a63d79fd57040fa153ea9300ed6845" and "d9142497da9e80f60a9126e8a9605d756f65aecb" have entirely different histories.

2 changed files with 0 additions and 23 deletions

View File

@ -1,21 +0,0 @@
# |— home
# |— app.jar - 启动jar包
# |— logs - 日志文件
# 指定构建镜像的起始镜像
FROM anolis-registry.cn-zhangjiakou.cr.aliyuncs.com/openanolis/dragonwell:17.0.4.0.4.8-standard-ga-8.6
# 定义时区参数
ENV TZ=Asia/Shanghai
RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo '$TZ' > /etc/timezone
# 挂载工作目录
VOLUME ["/home/logs/cloud-gateway"]
# 拷贝执行jar包文件
COPY ./target/cloud-gateway.jar /home/app.jar
# 构建启动命令
ENTRYPOINT ["java", "-jar"]
CMD ["/home/app.jar"]

View File

@ -10,8 +10,6 @@
<artifactId>cloud-gateway</artifactId>
<version>1.0.0</version>
<description>
cloud-gateway网关模块
</description>