1 Star 0 Fork 159

joker_helloworld/简约后台管理系统

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
Dockerfile 319 Bytes
一键复制 编辑 原始数据 按行查看 历史
杨有旺 提交于 2021-05-12 11:02 . 编写docker file
#基础镜像
FROM java:8
# 镜像制作人
MAINTAINER yangyouwang
# 在容器中创建挂载点,可以多个
VOLUME ["/tmp"]
# 定义参数
ARG JAR_FILE
# 文件到镜像
ADD ${JAR_FILE} app.jar
# 端口
EXPOSE 8080
# 执行命令
ENTRYPOINT ["java","-Djava.security.egd=file:/dev/./urandom","-jar","/app.jar"]
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Java
1
https://gitee.com/joker-helloworld/crud.git
git@gitee.com:joker-helloworld/crud.git
joker-helloworld
crud
简约后台管理系统
master

搜索帮助