1 Star 1 Fork 123

heshengfu1211/mall-tiny

forked from macro/mall-tiny 
Create your Gitee Account
Explore and code with more than 12 million developers,Free private repositories !:)
Sign up
Clone or Download
Dockerfile 379 Bytes
Copy Edit Raw Blame History
macro authored 2023-02-10 10:28 . docker镜像改用openjdk
# 该镜像需要依赖的基础镜像
FROM openjdk:8
# 将当前目录下的jar包复制到docker容器的/目录下
ADD ./mall-tiny-1.0.0-SNAPSHOT.jar /mall-tiny-1.0.0-SNAPSHOT.jar
# 声明服务运行在8080端口
EXPOSE 8080
# 指定docker容器启动时运行jar包
ENTRYPOINT ["java", "-jar","/mall-tiny-1.0.0-SNAPSHOT.jar"]
# 指定维护者的名字
MAINTAINER macrozheng
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/heshengfu1211/mall-tiny.git
git@gitee.com:heshengfu1211/mall-tiny.git
heshengfu1211
mall-tiny
mall-tiny
master

Search