1 Star 0 Fork 47

athlong021/forallcn-iotps

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
Dockerfile 575 Bytes
一键复制 编辑 原始数据 按行查看 历史
# 基础镜像
FROM java:8
# author
MAINTAINER zhouwr
# 设置日期
RUN ln -sf /usr/share/zoneinfo/Asia/Shanghai /etc/localtime
# 声明服务运行在8080端口
EXPOSE 8080
RUN mkdir -p /home/docker/iotps
WORKDIR /home/docker/iotps
# 复制当前电脑路径下jar文件:jeecg-boot-system-2.2.1.jar,到虚拟机路径下
ADD ./jeecg-boot-system/target/jeecg-boot-system-2.2.1.jar /home/docker/iotps/iotps-2.0.jar
#同步时间
RUN bash -c 'touch /home/docker/iotps/iotps-2.0.jar'
# 启动网关服务
ENTRYPOINT ["java","-jar","/home/docker/iotps/iotps-2.0.jar"]
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Java
1
https://gitee.com/athlong021/forallcn-iotps.git
git@gitee.com:athlong021/forallcn-iotps.git
athlong021
forallcn-iotps
forallcn-iotps
master

搜索帮助