1 Star 0 Fork 1

苏瞳/springboot-start

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
Dockerfile 373 Bytes
一键复制 编辑 原始数据 按行查看 历史
苏瞳 提交于 2024-08-01 15:01 . feat - add Dockerfile
# 基础镜像
FROM openjdk:8-jre
# author
MAINTAINER sutong
# 挂载目录
VOLUME /home/sutong
# 创建目录
RUN mkdir -p /home/sutong
# 指定路径
WORKDIR /home/sutong
# 复制jar文件到路径
COPY ./target/springboot-start.jar /home/sutong/springboot-start.jar
# 启动系统服务
ENTRYPOINT ["java","-jar","springboot-start.jar","--spring.profiles.active=prod"]
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/Mrzhugq/springboot-start.git
[email protected]:Mrzhugq/springboot-start.git
Mrzhugq
springboot-start
springboot-start
master

搜索帮助