1 Star 0 Fork 0

buukle/generator-plus

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
Dockerfile 498 Bytes
一键复制 编辑 原始数据 按行查看 历史
zhanglei001@buukle.top 提交于 2023-05-21 12:52 . 调整时区
#基础镜像,如果本地没有,会从远程仓库拉取。
FROM openjdk:8-jdk-alpine
#工作目录
WORKDIR /app/
EXPOSE 80
#拷贝本地文件到镜像中
COPY target/generator-plus-web-RELEASE.jar .
#指定容器启动时要执行的命令,但如果存在CMD指令,CMD中的参数会被附加到ENTRYPOINT指令的后面
ENTRYPOINT ["java","-Djava.security.egd=file:/dev/./urandom","-jar","-Duser.timezone=Asia/Shanghai","generator-plus-web-RELEASE.jar","--spring.profiles.active=prod"]
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/buukle/generator-plus.git
git@gitee.com:buukle/generator-plus.git
buukle
generator-plus
generator-plus
main

搜索帮助